package com.github.scribejava.core.exceptions; /** * Specialized exception that represents a problem in the signature */ public class OAuthSignatureException extends OAuthException { private static final long serialVersionUID = 1L; private static final String MSG = "Error while signing string: %s"; /** * Default constructor * * @param stringToSign plain string that gets signed (HMAC-SHA, etc) * @param e original exception */ public OAuthSignatureException(String stringToSign, Exception e) { super(String.format(MSG, stringToSign), e); } }