at.dms.compiler.tools.include
Class IncludeError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by at.dms.compiler.tools.common.FormattedException
              extended by at.dms.compiler.tools.include.IncludeError
All Implemented Interfaces:
Serializable

public class IncludeError
extends FormattedException

Error thrown on problems encountered while running the program.

See Also:
Serialized Form

Constructor Summary
IncludeError(Message message)
          An exception with a formatted message as argument
IncludeError(MessageDescription description)
          An exception without parameters
IncludeError(MessageDescription description, Object parameter)
          An exception with one parameter
IncludeError(MessageDescription description, Object[] parameters)
          An exception with an arbitrary number of parameters
IncludeError(MessageDescription description, Object parameter1, Object parameter2)
          An exception with two parameters
 
Method Summary
 
Methods inherited from class at.dms.compiler.tools.common.FormattedException
getFormattedMessage, getMessage, hasDescription
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, 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

IncludeError

public IncludeError(Message message)
An exception with a formatted message as argument

Parameters:
message - the formatted message

IncludeError

public IncludeError(MessageDescription description,
                    Object[] parameters)
An exception with an arbitrary number of parameters

Parameters:
description - the message description
parameters - the array of parameters

IncludeError

public IncludeError(MessageDescription description,
                    Object parameter1,
                    Object parameter2)
An exception with two parameters

Parameters:
description - the message description
parameter1 - the first parameter
parameter2 - the second parameter

IncludeError

public IncludeError(MessageDescription description,
                    Object parameter)
An exception with one parameter

Parameters:
description - the message description
parameter - the parameter

IncludeError

public IncludeError(MessageDescription description)
An exception without parameters

Parameters:
description - the message description