kirk.util
Class BooleanFormatException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byjava.lang.IllegalArgumentException
                  extended bykirk.util.BooleanFormatException
All Implemented Interfaces:
Serializable

public class BooleanFormatException
extends IllegalArgumentException

This class represents an exception that can be thrown during the conversion of a String to a boolean or Boolean.

Version:
1
Author:
Berend "Kirk" Wouda
See Also:
Boolean, Serialized Form

Field Summary
 
Fields inherited from class java.lang.RuntimeException
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
BooleanFormatException()
          Constructs a new BooleanFormatException with no message.
BooleanFormatException(String message)
          Constructs a new BooleanFormatException with the given message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

BooleanFormatException

public BooleanFormatException(String message)
Constructs a new BooleanFormatException with the given message.

Parameters:
message - The message that indicates what was wrong.

BooleanFormatException

public BooleanFormatException()
Constructs a new BooleanFormatException with no message.