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