|
EStoreAppException |
|
/*
* $Id: EStoreAppException.java,v 1.1.2.2 2001/03/15 00:40:00 brydon Exp $
* Copyright 2001 Sun Microsystems, Inc. All rights reserved.
* Copyright 2001 Sun Microsystems, Inc. Tous droits réservés.
*/
package com.sun.j2ee.blueprints.petstore.control.exceptions;
public class EStoreAppException extends EStoreEventException {
public EStoreAppException (String str) {
super(str);
}
}
|
EStoreAppException |
|