Package org.djunits.unit.si
Class SIRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.djunits.unit.si.SIRuntimeException
-
- All Implemented Interfaces:
Serializable
public class SIRuntimeException extends RuntimeException
Runtime Exceptions in SI package.Copyright (c) 2013-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUNITS License.- Author:
- Peter Knoppers
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SIRuntimeException()
Construct a new SIRuntimeException with all fields set to default values.SIRuntimeException(String message)
Construct a new SIRuntimeException with specified message.SIRuntimeException(String message, Throwable cause)
Construct a new SIRuntimeException with specified message and cause.SIRuntimeException(Throwable cause)
Construct a new SIRuntimeException with specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SIRuntimeException
public SIRuntimeException()
Construct a new SIRuntimeException with all fields set to default values.
-
SIRuntimeException
public SIRuntimeException(String message, Throwable cause)
Construct a new SIRuntimeException with specified message and cause.- Parameters:
message
- String; Stringcause
- Throwable; Throwable
-
SIRuntimeException
public SIRuntimeException(String message)
Construct a new SIRuntimeException with specified message.- Parameters:
message
- String; String
-
SIRuntimeException
public SIRuntimeException(Throwable cause)
Construct a new SIRuntimeException with specified cause.- Parameters:
cause
- Throwable; Throwable
-
-