KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > config > schema > setup > TooManyL1sException


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.config.schema.setup;
5
6 /**
7  * Created by brownie Date: Dec 22, 2005 Time: 10:30:14 AM
8  */

9 public class TooManyL1sException extends Exception JavaDoc {
10
11   public TooManyL1sException() {
12     //
13
}
14
15   public TooManyL1sException(String JavaDoc message) {
16     super(message);
17   }
18
19   public TooManyL1sException(Throwable JavaDoc cause) {
20     super(cause);
21   }
22
23   public TooManyL1sException(String JavaDoc message, Throwable JavaDoc cause) {
24     super(message, cause);
25   }
26 }
27
Popular Tags