Package org.openwebnet4j.message
Class FrameException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.openwebnet4j.message.FrameException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MalformedFrameException
,UnsupportedFrameException
public class FrameException extends Exception
FrameException class is used when a problem with a OpenWebNet frame occurred.- Author:
- M. Valla - Initial contribution
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FrameException()
Constructs a newFrameException
without a detail message.FrameException(String s)
Constructs a newFrameException
with the specified detail message.FrameException(String s, Throwable cause)
Constructs a newFrameException
with the specified detail message and 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
-
FrameException
public FrameException()
Constructs a newFrameException
without a detail message.
-
FrameException
public FrameException(String s)
Constructs a newFrameException
with the specified detail message.- Parameters:
s
- the detail message
-
-