1 18 19 package sync4j.framework.core; 20 21 import sync4j.framework.core.Sync4jException; 22 23 29 public class RepresentationException extends Sync4jException { 30 31 Throwable cause; 32 33 37 public RepresentationException(String msg) { 38 super(msg); 39 } 40 41 48 public RepresentationException(String msg, Throwable cause) { 49 super(msg, cause); 50 } 51 } | Popular Tags |