String Transformers Problem Set Javadocs

cs101.awt.geom
Class NoUniqueLineException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bycs101.awt.geom.NoUniqueLineException
All Implemented Interfaces:
java.io.Serializable

public class NoUniqueLineException
extends java.lang.Exception

This exception represents a condition where more than one line satisfies a condition, and this prevents the throwing method from generating a valid return value. This condition generally implies the need for alternate but forseable logic, and so it is a checked exception.

Version:
$Id: NoUniqueLineException.java,v 1.1 2003/03/04 23:22:04 gus Exp $
Author:
Patrick G. Heck, gus.heck@olin.edu
See Also:
Serialized Form

Constructor Summary
NoUniqueLineException()
          Creates a new instance of NoUniqueLineException without detail message.
NoUniqueLineException(java.lang.String msg)
          Constructs an instance of NoUniqueLineException with the specified detail 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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NoUniqueLineException

public NoUniqueLineException()
Creates a new instance of NoUniqueLineException without detail message.


NoUniqueLineException

public NoUniqueLineException(java.lang.String msg)
Constructs an instance of NoUniqueLineException with the specified detail message.

Parameters:
msg - the detail message.

String Transformers Problem Set Javadocs