| java.lang.Object java.lang.Throwable java.lang.Exception com.ivata.mask.util.SystemException com.ivata.mask.web.struts.ValueObjectException
ValueObjectException | public class ValueObjectException extends SystemException (Code) | |
Thrown whenever there is a problem creating a value object.
since: ivata masks 0.3 (2004-05-10) author: Colin MacLeod author: colin.macleod@ivata.com version: $Revision: 1.7 $ |
Constructor Summary | |
public | ValueObjectException(String message)
Create a value object exception, given a clear message. | public | ValueObjectException(Throwable cause)
Create a value object exception, given the cause. | public | ValueObjectException(Throwable cause, Class valueObjectClassParam)
Create a value object exception, given the cause and the class of the
value object.
Parameters: cause - exception which caused the problem to happen. Parameters: valueObjectClassParam - The class of value object we were trying to create. | public | ValueObjectException(Throwable cause, Class valueObjectClassParam, String message)
Create a value object exception, given the cause and the class of the
value object and an extra description of what went wrong.
Parameters: cause - exception which caused the problem to happen. Parameters: valueObjectClassParam - The class of value object we were trying to create. |
ValueObjectException | public ValueObjectException(String message)(Code) | |
Create a value object exception, given a clear message.
Parameters: message - message describing what went wrong. |
ValueObjectException | public ValueObjectException(Throwable cause)(Code) | |
Create a value object exception, given the cause.
Parameters: cause - exception which caused the problem to happen. |
ValueObjectException | public ValueObjectException(Throwable cause, Class valueObjectClassParam)(Code) | |
Create a value object exception, given the cause and the class of the
value object.
Parameters: cause - exception which caused the problem to happen. Parameters: valueObjectClassParam - The class of value object we were trying to create. Can benull . |
ValueObjectException | public ValueObjectException(Throwable cause, Class valueObjectClassParam, String message)(Code) | |
Create a value object exception, given the cause and the class of the
value object and an extra description of what went wrong.
Parameters: cause - exception which caused the problem to happen. Parameters: valueObjectClassParam - The class of value object we were trying to create. Can benull . Parameters: message - describes what went wrong. |
|
|