Class ProbabilityException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opentrafficsim.core.distributions.ProbabilityException
- All Implemented Interfaces:
Serializable
Exception thrown when provided probabilities or frequencies are invalid. Negative probabilities or frequencies are invalid. A
set of probabilities or frequencies that adds up to 0 causes this exception when the draw method is called.
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:
- Peter Knoppers
- See Also:
-
Constructor Summary
ConstructorDescriptionProbabilityException
(String message) ProbabilityException
(String message, Throwable cause) ProbabilityException
(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) ProbabilityException
(Throwable cause) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ProbabilityException
public ProbabilityException() -
ProbabilityException
- Parameters:
message
- String; String
-
ProbabilityException
- Parameters:
cause
- Throwable; Throwable
-
ProbabilityException
- Parameters:
message
- String; Stringcause
- Throwable; Throwable
-
ProbabilityException
public ProbabilityException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) - Parameters:
message
- String; description of the problemcause
- Throwable; the cause of this ValueRuntimeExceptionenableSuppression
- boolean; whether or not suppression is enabled or disabledwritableStackTrace
- boolean; whether or not the stack trace should be writable
-