package at.gv.egovernment.moa.id.protocols.oauth20.exceptions; import at.gv.egovernment.moa.id.protocols.oauth20.OAuth20Constants; public class OAuth20CertificateErrorException extends OAuth20Exception { private static final long serialVersionUID = 1L; public OAuth20CertificateErrorException(final String name) { super(OAuth20Constants.ERROR_SERVER_ERROR, "oauth20.09", new Object[] { name }); } }