Package org.alfresco.query
Class CannedQueryException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.alfresco.error.AlfrescoRuntimeException
-
- org.alfresco.query.CannedQueryException
-
- All Implemented Interfaces:
java.io.Serializable
public class CannedQueryException extends AlfrescoRuntimeException
Exception generated by failures to execute canned queries.- Since:
- 4.0
- Author:
- Derek Hulley
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CannedQueryException(java.lang.String msg)
CannedQueryException(java.lang.String msgId, java.lang.Object[] msgParams)
CannedQueryException(java.lang.String msgId, java.lang.Object[] msgParams, java.lang.Throwable cause)
CannedQueryException(java.lang.String msg, java.lang.Throwable cause)
-
Method Summary
-
Methods inherited from class org.alfresco.error.AlfrescoRuntimeException
create, create, getMsgId, getMsgParams, getNumericalId, getRootCause, makeRuntimeException
-
-
-
-
Constructor Detail
-
CannedQueryException
public CannedQueryException(java.lang.String msg)
- Parameters:
msg
- the message
-
CannedQueryException
public CannedQueryException(java.lang.String msg, java.lang.Throwable cause)
- Parameters:
msg
- the messagecause
- the exception cause
-
CannedQueryException
public CannedQueryException(java.lang.String msgId, java.lang.Object[] msgParams)
- Parameters:
msgId
- the message idmsgParams
- the message parameters
-
CannedQueryException
public CannedQueryException(java.lang.String msgId, java.lang.Object[] msgParams, java.lang.Throwable cause)
- Parameters:
msgId
- the message idmsgParams
- the message parameterscause
- the exception cause
-
-