package com.hwlcn.security.util; public class InstantiationException extends RuntimeException { public InstantiationException() { super(); } public InstantiationException(String message) { super(message); } public InstantiationException(Throwable cause) { super(cause); } public InstantiationException(String message, Throwable cause) { super(message, cause); } }