Package org.astrogrid.samp.client
Class SampException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.astrogrid.samp.client.SampException
-
- All Implemented Interfaces:
java.io.Serializable
public class SampException extends java.io.IOException
Exception thrown when some error occurs in SAMP processing. Note that this is a subclass ofIOException
.- Since:
- 15 Jul 2008
- Author:
- Mark Taylor
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SampException()
Constructs an exception with no message.SampException(java.lang.String msg)
Consructs an exception with a given message.SampException(java.lang.String msg, java.lang.Throwable cause)
Constructs an exception with a given message and cause.SampException(java.lang.Throwable cause)
Constructs an exception with a given cause.
-
-
-
Constructor Detail
-
SampException
public SampException()
Constructs an exception with no message.
-
SampException
public SampException(java.lang.String msg)
Consructs an exception with a given message.- Parameters:
msg
- message
-
SampException
public SampException(java.lang.Throwable cause)
Constructs an exception with a given cause.- Parameters:
cause
- cause of this exception
-
SampException
public SampException(java.lang.String msg, java.lang.Throwable cause)
Constructs an exception with a given message and cause.- Parameters:
msg
- messagecause
- cause of this exception
-
-