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
public class InternalFederateException extends Exception
An exception that thrown within the execution of a federate.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InternalFederateException()
InternalFederateException(long simTime, Exception ex)
Constructor based on a thrown exception.InternalFederateException(long simTime, String message)
Constructor based on an error message.InternalFederateException(Exception ex)
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 Detail
-
InternalFederateException
public InternalFederateException()
-
InternalFederateException
public InternalFederateException(String message)
Constructor based on an error message.- Parameters:
message
- string describing the exception
-
InternalFederateException
public InternalFederateException(long simTime, String message)
Constructor based on an error message.- Parameters:
simTime
- simulation time at which the exception occurredmessage
- string describing the exception
-
InternalFederateException
public InternalFederateException(Exception ex)
Constructor based on a thrown exception.- Parameters:
ex
- exception that signal that a parameter cannot be modified
-
InternalFederateException
public InternalFederateException(long simTime, Exception ex)
Constructor based on a thrown exception.- Parameters:
simTime
- simulation time at which the exception occurredex
- exception that signal that a parameter cannot be modified
-
-