1 28 29 package com.caucho.config; 30 31 import com.caucho.util.LineCompileException; 32 import com.caucho.util.RegistryException; 33 34 37 public class RegistryConfigException extends RegistryException 38 implements LineCompileException 39 { 40 43 public RegistryConfigException() 44 { 45 } 46 47 50 public RegistryConfigException(String msg) 51 { 52 super(msg); 53 } 54 55 58 public RegistryConfigException(String msg, Throwable e) 59 { 60 super(msg, e); 61 } 62 63 66 public RegistryConfigException(Throwable e) 67 { 68 super(e); 69 } 70 } 71 | Popular Tags |