00001: package clogs.util;
00002: 
00003: 
00004: public class EmptyListException extends RuntimeException
00005: {
00006:   public EmptyListException ()
00007:   {
00008:     super ();
00009:   }
00010: 
00011: 
00012:   public EmptyListException (String s)
00013:   {
00014:     super (s);
00015:   }
00016: }
00017: