gishur.gui2
Class ScreenTransformationException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--gishur.gui2.ScreenTransformationException
All Implemented Interfaces:
java.io.Serializable

public class ScreenTransformationException
extends java.lang.RuntimeException

This exception class indicates errors while transforming points.

Version:
1.0
Author:
Thomas Wolf
See Also:
Serialized Form

Field Summary
 java.lang.Object source
          Object that produced the error.
 ScreenTransformation transformation
          The ScreenTransformation that produced the error.
 
Constructor Summary
ScreenTransformationException(ScreenTransformation transformation, java.lang.Object source)
          Constructs a new ScreenTransformationException with the ScreenTransformation and source object.
ScreenTransformationException(java.lang.String message, ScreenTransformation transformation, java.lang.Object source)
          Constructs a new ScreenTransformationException with the given message String, ScreenTransformation and source object.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

source

public java.lang.Object source
Object that produced the error.

transformation

public ScreenTransformation transformation
The ScreenTransformation that produced the error.
Constructor Detail

ScreenTransformationException

public ScreenTransformationException(java.lang.String message,
                                     ScreenTransformation transformation,
                                     java.lang.Object source)
Constructs a new ScreenTransformationException with the given message String, ScreenTransformation and source object.
Parameters:
message - message string
transformation - the ScreenTransformation that produced the error
source - the source object that could not be converted

ScreenTransformationException

public ScreenTransformationException(ScreenTransformation transformation,
                                     java.lang.Object source)
Constructs a new ScreenTransformationException with the ScreenTransformation and source object.
Parameters:
transformation - the ScreenTransformation that produced the error
source - the source object that could not be converted