KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > ipanema > person > PersonStructFieldValueNotFoundException


1 /*
2  * Created on 22.03.2004
3  */

4 package com.nightlabs.ipanema.person;
5
6 /**
7  * @author marco
8  */

9 public class PersonStructFieldValueNotFoundException extends PersonException {
10
11     public PersonStructFieldValueNotFoundException() { }
12
13     public PersonStructFieldValueNotFoundException(String JavaDoc message) {
14         super(message);
15     }
16
17     public PersonStructFieldValueNotFoundException(String JavaDoc message, Throwable JavaDoc cause) {
18         super(message, cause);
19     }
20
21     public PersonStructFieldValueNotFoundException(Throwable JavaDoc cause) {
22         super(cause);
23     }
24
25 }
26
Popular Tags