Package org.opentrafficsim.kpi.sampling
Class SamplingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opentrafficsim.kpi.sampling.SamplingException
- All Implemented Interfaces:
 java.io.Serializable
public class SamplingException
extends java.lang.Exception
Exception thrown when sampling encounters an error.
 
 Copyright (c) 2013-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. 
 BSD-style license. See OpenTrafficSim License.
 
- Version:
 - $Revision$, $LastChangedDate$, by $Author$, initial version Sep 29, 2016 
 - Author:
 - Alexander Verbraeck, Peter Knoppers, Wouter Schakel
 - See Also:
 - Serialized Form
 
- 
Constructor Summary
Constructors Constructor Description SamplingException()SamplingException(java.lang.String message)SamplingException(java.lang.String message, java.lang.Throwable cause)SamplingException(java.lang.String message, java.lang.Throwable cause, boolean enableSuppression, boolean writableStackTrace)SamplingException(java.lang.Throwable cause) - 
Method Summary
 
- 
Constructor Details
- 
SamplingException
public SamplingException() - 
SamplingException
public SamplingException(java.lang.String message)- Parameters:
 message- String; String
 - 
SamplingException
public SamplingException(java.lang.Throwable cause)- Parameters:
 cause- Throwable; Throwable
 - 
SamplingException
public SamplingException(java.lang.String message, java.lang.Throwable cause)- Parameters:
 message- String; Stringcause- Throwable; Throwable
 - 
SamplingException
public SamplingException(java.lang.String message, java.lang.Throwable cause, boolean enableSuppression, boolean writableStackTrace)- Parameters:
 message- String; description of the problemcause- Throwable; the cause of this ExceptionenableSuppression- boolean; whether or not suppression is enabled or disabledwritableStackTrace- boolean; whether or not the stack trace should be writable
 
 -