Package ej.hal
Class WatchdogTimerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- ej.hal.WatchdogTimerException
-
- All Implemented Interfaces:
Serializable
public class WatchdogTimerException extends RuntimeException
Unchecked exception thrown when error occurred duringWatchdogTimeroperations.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WatchdogTimerException()Default Constructor forWatchdogTimerException.WatchdogTimerException(String message, Throwable cause)Constructs a newWatchdogTimerExceptionwith the specified message and cause.WatchdogTimerException(Throwable cause)Constructs a newWatchdogTimerExceptionwith the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, toString
-
-
-
-
Constructor Detail
-
WatchdogTimerException
public WatchdogTimerException()
Default Constructor forWatchdogTimerException.
-
WatchdogTimerException
public WatchdogTimerException(String message, Throwable cause)
Constructs a newWatchdogTimerExceptionwith the specified message and cause.- Parameters:
message- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
WatchdogTimerException
public WatchdogTimerException(Throwable cause)
Constructs a newWatchdogTimerExceptionwith the specified cause.- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
-