com.supermap.services.components
Class DataException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.supermap.services.components.DataException
-
- All Implemented Interfaces:
- java.io.Serializable
public class DataException extends java.lang.ExceptionData service component exception information.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description DataException()Default constructor.DataException(java.lang.String message)Constructs a new exception with specified details.DataException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with specified details and causes.DataException(java.lang.Throwable cause)Constructs a new exception with causes.
-
-
-
Constructor Detail
-
DataException
public DataException()
Default constructor.
-
DataException
public DataException(java.lang.String message)
Constructs a new exception with specified details.- Parameters:
message- detailed message.
-
DataException
public DataException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with specified details and causes.- Parameters:
message- detailed message.cause- The cause.
-
DataException
public DataException(java.lang.Throwable cause)
Constructs a new exception with causes.- Parameters:
cause- The cause.
-
-