1 18 19 22 package sync4j.framework.engine.source; 23 24 import sync4j.framework.engine.SyncException; 25 26 public class SyncSourceException extends SyncException { 27 private String uri = null; 28 private String config = null; 29 30 public SyncSourceException(String msg) { 31 super(msg); 32 } 33 34 public SyncSourceException(String msg, int statusCode) { 35 super(msg, statusCode); 36 } 37 38 public SyncSourceException(String msg, Throwable cause) { 39 super(msg, cause); 40 } 41 42 public SyncSourceException(Throwable cause) { 43 super(cause); 44 } 45 46 public SyncSourceException(String uri, String config, Throwable cause) { 47 super(cause); 48 this.uri = uri; 49 this.config = config; 50 } 51 52 public String getUri() { 53 return this.uri; 54 } 55 56 public String getConfig() { 57 return this.config; 58 } 59 } 60 | Popular Tags |