Advertisement
jdalbey

ItemNotFoundException

Nov 12th, 2013
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 KB | None | 0 0
  1. /**
  2.  * Exception class for item not found
  3.  * in Weiss's binary search tree removal.
  4.  * @author jdalbey
  5.  */
  6. public class ItemNotFoundException extends RuntimeException
  7. {
  8.     /**
  9.      * Construct this exception object.
  10.      */
  11.     public ItemNotFoundException( )
  12.     {
  13.         super( );
  14.     }
  15.     /**
  16.      * Construct this exception object.
  17.      * @param message the error message.
  18.      */
  19.     public ItemNotFoundException( String message )
  20.     {
  21.         super( message );
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement