package gov.nist.registry.common2.exception; public class XdsException extends Exception { public XdsException(String msg) { super(msg); } public XdsException(String msg, Throwable cause) { super(msg, cause); } }