KickJava   Java API By Example, From Geeks To Geeks.

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


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 TestMultipleFoundException extends TestException
7 {
8   private static final long serialVersionUID = 1L;
9
10   public TestMultipleFoundException()
11   {
12     super();
13   }
14
15   public TestMultipleFoundException(String JavaDoc message)
16   {
17     super(message, MULTIPLE_OBJECTS_FOUND);
18   }
19
20   // Place your custom code BETWEEN the following tags
21
//<DjenericManualCode>
22
//</DjenericManualCode>
23
}
Popular Tags