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 { 8 9 private String message; 10 11 public InvalidPOException(String message) { 12 super(message); 13 this.message = message; 14 } 15 16 public String getMessage() { 17 return message; 18 } 19 } 20