edu.ucsb.ccs.jcontractor.transformation
Class AbortTransformationException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--edu.ucsb.ccs.jcontractor.transformation.AbortTransformationException
All Implemented Interfaces:
java.io.Serializable

public class AbortTransformationException
extends java.lang.Exception

An exception that will be thrown by a Transformation when an error occurs that requires that the ClassTransformer abort all subsequent transformations.

Version:
$Id: AbortTransformationException.java,v 1.2 2002/01/15 02:28:19 parkera Exp $
Author:
Parker Abercrombie
See Also:
ClassTransformer, Transformation, Serialized Form

Constructor Summary
AbortTransformationException(java.lang.String message)
          Create a new exception with the specified error 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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AbortTransformationException

public AbortTransformationException(java.lang.String message)
Create a new exception with the specified error message. The message should be something that would be appropriate to print out so that the user knows what went wrong.

Parameters:
message - an explaination of why the transformation needs to abort.