gate.util
Class LazyProgrammerException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by gate.util.LazyProgrammerException
All Implemented Interfaces:
Serializable

public class LazyProgrammerException
extends RuntimeException

What to throw in a method that hasn't been implemented yet. Yes, there are good reasons never to throw RuntimeExceptions and thereby sidestep Java's exception checking mechanism. But we're so lazy we don't care. And anyway, none of these are ever supposed to make it into released versions (who are we kidding?).

See Also:
Serialized Form

Constructor Summary
LazyProgrammerException()
          In a fit of complete laziness we didn't even document this class properly.
LazyProgrammerException(String s)
          In a fit of complete laziness we didn't even document this class properly.
 
Method Summary
 
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

LazyProgrammerException

public LazyProgrammerException()
In a fit of complete laziness we didn't even document this class properly.


LazyProgrammerException

public LazyProgrammerException(String s)
In a fit of complete laziness we didn't even document this class properly.