relativelayout
Class InvalidBindingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by relativelayout.InvalidBindingException
All Implemented Interfaces:
Serializable

public class InvalidBindingException
extends RuntimeException

Indicates that a Binding is invalid; that is, it is not physically possible. This could be as a result of saying something like "the left edge of X should be below the right edge of Y" -- left and right edges cannot be above or below other edges. Similarly, "the left edge of X should be below the top edge of Y" will also raise an InvalidBindingException, because you cannot relate edges that are perpendicular to each other.

Author:
Brian Ellis (firebird@andrew.cmu.edu)
See Also:
Serialized Form

Constructor Summary
InvalidBindingException(Binding binding)
          Constructor for InvalidBindingException.
 
Method Summary
 String getMessage()
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidBindingException

public InvalidBindingException(Binding binding)
Constructor for InvalidBindingException.

Parameters:
binding -
Method Detail

getMessage

public String getMessage()
Overrides:
getMessage in class Throwable