View Javadoc

1   package twcsckernel.projectbase.io;
2   
3   
4   /***
5    * @author VMD Group
6    *
7    */
8   public class ItemNotFoundException extends RuntimeException {
9       private static final long serialVersionUID = 1L;
10      
11      public ItemNotFoundException() {
12          super();
13      }
14      
15      public ItemNotFoundException(String message)
16      {
17          super(message);
18      }
19  }