1 2 package SOFA.SOFAnode.Run.Deployment; 3 4 8 public class ComponentAccessException extends Exception { 9 10 public ComponentAccessException() { 11 super(); 12 } 13 14 public ComponentAccessException(String msg) { 15 super(msg); 16 } 17 18 public ComponentAccessException(String msg, Throwable cause) { 19 super(msg, cause); 20 } 21 22 public ComponentAccessException(Throwable cause) { 23 super(cause); 24 } 25 } 26 | Popular Tags |