Package org.apache.mina.core.session
Class UnknownMessageTypeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.mina.core.session.UnknownMessageTypeException
-
- All Implemented Interfaces:
Serializable
public class UnknownMessageTypeException extends RuntimeException
An exception that is thrown when the type of the message cannot be determined.- Author:
- Apache MINA Project
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnknownMessageTypeException()
Creates a new UnknownMessageTypeException instance.UnknownMessageTypeException(String message)
Creates a new UnknownMessageTypeException instance.UnknownMessageTypeException(String message, Throwable cause)
Creates a new UnknownMessageTypeException instance.UnknownMessageTypeException(Throwable cause)
Creates a new UnknownMessageTypeException instance.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnknownMessageTypeException
public UnknownMessageTypeException()
Creates a new UnknownMessageTypeException instance.
-
UnknownMessageTypeException
public UnknownMessageTypeException(String message, Throwable cause)
Creates a new UnknownMessageTypeException instance.- Parameters:
message
- The detail messagecause
- The Exception's cause
-
UnknownMessageTypeException
public UnknownMessageTypeException(String message)
Creates a new UnknownMessageTypeException instance.- Parameters:
message
- The detail message
-
UnknownMessageTypeException
public UnknownMessageTypeException(Throwable cause)
Creates a new UnknownMessageTypeException instance.- Parameters:
cause
- The Exception's cause
-
-