KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > genimen > djeneric > test > strong > TestNotFoundException


1 package com.genimen.djeneric.test.strong;
2
3 // Place your custom code BETWEEN the following tags
4
//<DjenericManualCode id="1">
5
//</DjenericManualCode>
6
public class TestNotFoundException extends TestException
7 {
8   private static final long serialVersionUID = 1L;
9
10   public TestNotFoundException()
11   {
12     super();
13   }
14
15   public TestNotFoundException(String JavaDoc message)
16   {
17     super(message, OBJECT_NOT_FOUND);
18   }
19
20   // Place your custom code BETWEEN the following tags
21
//<DjenericManualCode>
22
//</DjenericManualCode>
23
}
Popular Tags