com.ibm.are.common
Class AreMissingResourceException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.ibm.are.common.GenericAreException
                  extended by com.ibm.are.common.AreMissingResourceException
All Implemented Interfaces:
java.io.Serializable

public class AreMissingResourceException
extends GenericAreException

The AreMissingResourceException exception class can be thrown any time the Application Runtime Expert, or any of its plugins, detects a condition where a required resource cannot be found or is missing. The resource could be a file, Java class, property file, etc.

Version:
1.0
Author:
IBM
See Also:
Serialized Form

Field Summary
static java.lang.String COPYRIGHT
          Copyright for class bytecode
 
Constructor Summary
AreMissingResourceException(java.io.File resourceName)
          Constructs a new AreMissingResourceException
AreMissingResourceException(java.io.File resourceName, java.lang.Throwable cause)
          Constructs a new AreMissingResourceException
AreMissingResourceException(java.lang.String resourceName)
          Constructs a new AreMissingResourceException
AreMissingResourceException(java.lang.String resourceName, java.lang.Throwable cause)
          Constructs a new AreMissingResourceException
 
Method Summary
 
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
 

Field Detail

COPYRIGHT

public static final java.lang.String COPYRIGHT
Copyright for class bytecode

See Also:
Constant Field Values
Constructor Detail

AreMissingResourceException

public AreMissingResourceException(java.lang.String resourceName)
Constructs a new AreMissingResourceException

Parameters:
resourceName - The name of the resource that cannot be found

AreMissingResourceException

public AreMissingResourceException(java.lang.String resourceName,
                                   java.lang.Throwable cause)
Constructs a new AreMissingResourceException

Parameters:
resourceName - The name of the resource that cannot be found
cause - The original exception that caused this one to be thrown

AreMissingResourceException

public AreMissingResourceException(java.io.File resourceName)
Constructs a new AreMissingResourceException

Parameters:
resourceName - The name of the file that cannot be found

AreMissingResourceException

public AreMissingResourceException(java.io.File resourceName,
                                   java.lang.Throwable cause)
Constructs a new AreMissingResourceException

Parameters:
resourceName - The name of the file that cannot be found
cause - The original exception that caused this one to be thrown