Package jadex.binary
Class SerializerDecodingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- jadex.binary.SerializerDecodingException
-
- All Implemented Interfaces:
java.io.Serializable
public class SerializerDecodingException extends java.lang.RuntimeException
Exception that occured during decoding, preserving context state- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected IDecodingContext
context
Decoding context in its failure state.
-
Constructor Summary
Constructors Constructor Description SerializerDecodingException()
Empty constructorSerializerDecodingException(java.lang.Throwable cause, IDecodingContext context)
Creates the Exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IDecodingContext
getContext()
void
setContext(IDecodingContext context)
Sets the context.
-
-
-
Field Detail
-
context
protected IDecodingContext context
Decoding context in its failure state.
-
-
Constructor Detail
-
SerializerDecodingException
public SerializerDecodingException()
Empty constructor
-
SerializerDecodingException
public SerializerDecodingException(java.lang.Throwable cause, IDecodingContext context)
Creates the Exception.- Parameters:
cause
- Exception cause.context
- The decoding context.
-
-
Method Detail
-
getContext
public IDecodingContext getContext()
- Returns:
- the context
-
setContext
public void setContext(IDecodingContext context)
Sets the context.- Parameters:
context
- The context to set
-
-