1 4 package com.tc.config.schema.setup; 5 6 9 public class TooManyL1sException extends Exception { 10 11 public TooManyL1sException() { 12 } 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 } 27 | Popular Tags |