KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > j2ee > blueprints > stringposervice > InvalidPOException


1 /* Copyright 2004 Sun Microsystems, Inc. All rights reserved. You may not modify, use, reproduce, or distribute this software except in compliance with the terms of the License at:
2  http://developer.sun.com/berkeley_license.html
3  $Id: InvalidPOException.java,v 1.2 2005/06/01 23:49:47 smitha Exp $ */

4
5 package com.sun.j2ee.blueprints.stringposervice;
6
7 public class InvalidPOException extends Exception JavaDoc {
8     
9     private String JavaDoc message;
10     
11     public InvalidPOException(String JavaDoc message) {
12         super(message);
13         this.message = message;
14     }
15     
16     public String JavaDoc getMessage() {
17         return message;
18     }
19 }
20
Popular Tags