Package org.opentrafficsim.kpi.sampling
Class SamplingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opentrafficsim.kpi.sampling.SamplingException
- All Implemented Interfaces:
Serializable
Exception thrown when sampling encounters an error.
Copyright (c) 2013-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
- Author:
- Alexander Verbraeck, Peter Knoppers, Wouter Schakel
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructor.SamplingException
(String message) Constructor.SamplingException
(String message, Throwable cause) Constructor.SamplingException
(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Constructor.SamplingException
(Throwable cause) Constructor. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SamplingException
public SamplingException()Constructor. -
SamplingException
Constructor.- Parameters:
message
- String; String
-
SamplingException
Constructor.- Parameters:
cause
- Throwable; Throwable
-
SamplingException
Constructor.- Parameters:
message
- String; Stringcause
- Throwable; Throwable
-
SamplingException
public SamplingException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Constructor.- 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
-