01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.rewriter.rom;
06:
07: /**
08: * This exception is thrown when DataRuleCollection is being created with an
09: * invalid collection ID or while adding different kinds of DataRule objects
10: * being added to the created DataRuleCollection
11: *
12: * @version 1.0 12/15/2001
13: * @author Raja Nagendra Kumar, Nagendra.Raja@sun.com
14: * @see com.sun.portal.rewriter.rom.DataRuleCollection, DataRuleCollection#add
15: */
16: public class InvalidCollectionIDException extends RuntimeException {
17: public InvalidCollectionIDException(final String aMessage) {
18: super (aMessage);
19: }//constructor
20: }//class InvalidCollectionIDException
|