01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.config.schema.setup;
05:
06: /**
07: * Created by brownie Date: Dec 22, 2005 Time: 10:30:14 AM
08: */
09: public class TooManyL1sException extends Exception {
10:
11: public TooManyL1sException() {
12: //
13: }
14:
15: public TooManyL1sException(String message) {
16: super (message);
17: }
18:
19: public TooManyL1sException(Throwable cause) {
20: super (cause);
21: }
22:
23: public TooManyL1sException(String message, Throwable cause) {
24: super(message, cause);
25: }
26: }
|