oracle.owb.foundation
Class InvalidFormatException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--oracle.owb.foundation.InvalidFormatException
All Implemented Interfaces:
java.io.Serializable

public class InvalidFormatException
extends java.lang.Exception

InvalidFormatException is an exception that is usually thrown when the value being set to a property does not satisfy the required format of the property (e.g. for a String, the length is greater than the maximum allowed length)

See Also:
Serialized Form

Constructor Summary
InvalidFormatException()
          Constructs a InvalidFormatException with no detail message.
InvalidFormatException(java.lang.String s)
          Constructs a InvalidFormatException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidFormatException

public InvalidFormatException()
Constructs a InvalidFormatException with no detail message.

InvalidFormatException

public InvalidFormatException(java.lang.String s)
Constructs a InvalidFormatException with the specified detail message.
Parameters:
s - the detail message.