KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jacorb > notification > filter > PropertyDoesNotExistException


1 package org.jacorb.notification.filter;
2
3
4
5 /**
6
7  * @author Alphonse Bendt
8
9  * @version $Id: PropertyDoesNotExistException.java,v 1.2 2005/05/01 21:51:46 alphonse.bendt Exp $
10
11  */

12
13 public class PropertyDoesNotExistException extends EvaluationException
14
15 {
16
17     private static final long serialVersionUID = 1L;
18
19
20
21     public PropertyDoesNotExistException(String JavaDoc name)
22
23     {
24
25         super("the property $" + name + " does not exist");
26
27     }
28
29 }
30
31
Popular Tags