com.supermap.services
Class OGCParameterException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.supermap.services.OGCException
-
- com.supermap.services.OGCParameterException
-
- All Implemented Interfaces:
- java.io.Serializable
public class OGCParameterException extends OGCException
The parameter exception of the OGC service.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description OGCParameterException(boolean isExecuteLog, java.lang.Exception e)Constructs a new exception based on whether to output the log information and the known exception.OGCParameterException(java.lang.String message, java.lang.String code, java.lang.String format)Constructs a new exception based on the specified detail message, exception code, and exception format.OGCParameterException(java.lang.String message, java.lang.Throwable e, java.lang.String code, java.lang.String format)Constructs a new exception based on the specified detail message, reason, exception code, and exception format.
-
Method Summary
-
Methods inherited from class com.supermap.services.OGCException
getCode, getFormat, getLocator, isExecuteLog, setCode, setFormat, setLocator
-
-
-
-
Constructor Detail
-
OGCParameterException
public OGCParameterException(boolean isExecuteLog, java.lang.Exception e)Constructs a new exception based on whether to output the log information and the known exception.- Parameters:
isExecuteLog- whether to output the log information, true means to output, false means not.e- the existing exception.
-
OGCParameterException
public OGCParameterException(java.lang.String message, java.lang.String code, java.lang.String format)Constructs a new exception based on the specified detail message, exception code, and exception format.- Parameters:
message- detailed message.code- the exception codes.format- the format of the exception information.
-
OGCParameterException
public OGCParameterException(java.lang.String message, java.lang.Throwable e, java.lang.String code, java.lang.String format)Constructs a new exception based on the specified detail message, reason, exception code, and exception format.- Parameters:
message- detailed message.e- reason.code- the exception codes.format- the format of the exception information.
-
-