com.ls.util
Class ResourceBundleException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.ls.BaseException
                    |
                    +--com.ls.util.ResourceBundleException
All Implemented Interfaces:
Serializable

public class ResourceBundleException
extends BaseException

Exception to identify that there is a problem while opening a resource

Version:
$Revision: 1.0 $
Author:
Last modified by $Author: TBerk $
See Also:
Serialized Form

Fields inherited from class com.ls.BaseException
innerThrowable
 
Constructor Summary
ResourceBundleException()
          Creates a ResourceBundleException with no specified detail message.
ResourceBundleException(String description)
          Creates a ResourceBundleException with the specified detail message.
ResourceBundleException(String description, Throwable throwable)
          Creates a ResourceBundleException with the specified detail message and nested exception.
 
Methods inherited from class com.ls.BaseException
getMessage, getNestedThrowable, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ResourceBundleException

public ResourceBundleException()
Creates a ResourceBundleException with no specified detail message.

ResourceBundleException

public ResourceBundleException(String description)
Creates a ResourceBundleException with the specified detail message.
Parameters:
description - The detail message.

ResourceBundleException

public ResourceBundleException(String description,
                               Throwable throwable)
Creates a ResourceBundleException with the specified detail message and nested exception.
Parameters:
description - The detail message.
throwable - The nested exception.