Class InventoryException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.neotropic.kuwaiba.core.apis.persistence.exceptions.InventoryException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ApplicationObjectNotFoundException
,ArraySizeMismatchException
,BusinessObjectNotFoundException
,BusinessRuleException
,ConnectionException
,DatabaseException
,ExecutionException
,InvalidArgumentException
,MetadataObjectNotFoundException
,NoCommercialModuleFoundException
,NotAuthorizedException
,OperationNotPermittedException
,ScriptNotCompiledException
,UnsupportedPropertyException
,WrongMappingException
public class InventoryException extends Exception
Root class for all custom exceptions in this package- Author:
- Charles Edward Bedon Cortazar <charles.bedon@kuwaiba.org>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InventoryException()
InventoryException(String msg)
InventoryException(String prefix, int code, Object... messageArgs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCode()
Object[]
getMessageArgs()
String
getMessageKey()
String
getPrefix()
void
setCode(int code)
void
setMessageArgs(Object... messageArgs)
void
setPrefix(String prefix)
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
getPrefix
public String getPrefix()
-
setPrefix
public void setPrefix(String prefix)
-
getCode
public int getCode()
-
setCode
public void setCode(int code)
-
getMessageArgs
public Object[] getMessageArgs()
-
setMessageArgs
public void setMessageArgs(Object... messageArgs)
-
getMessageKey
public String getMessageKey()
-
-