Package org.eclipse.mosaic.rti.api
Class InternalFederateException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.eclipse.mosaic.rti.api.InternalFederateException
- All Implemented Interfaces:
Serializable
An exception that thrown within the execution of a federate.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInternalFederateException
(long simTime, Exception ex) Constructor based on a thrown exception.InternalFederateException
(long simTime, String message) Constructor based on an error message.Constructor based on a thrown exception.InternalFederateException
(String message) Constructor based on an error message.InternalFederateException
(String message, Exception ex) Constructor based on a message and a thrown exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InternalFederateException
public InternalFederateException() -
InternalFederateException
Constructor based on an error message.- Parameters:
message
- string describing the exception
-
InternalFederateException
Constructor based on an error message.- Parameters:
simTime
- simulation time at which the exception occurredmessage
- string describing the exception
-
InternalFederateException
Constructor based on a thrown exception.- Parameters:
ex
- exception that signal that a parameter cannot be modified
-
InternalFederateException
Constructor based on a thrown exception.- Parameters:
simTime
- simulation time at which the exception occurredex
- exception that signal that a parameter cannot be modified
-
InternalFederateException
Constructor based on a message and a thrown exception.- Parameters:
ex
- exception that signal that a parameter cannot be modifiedmessage
- string describing the exception
-