added toString to error for debug and display

pull/1015/merge
Justin Richer 2017-03-03 17:23:39 -05:00
parent e1ae8f3d8d
commit 1cb5b6c6ff
1 changed files with 8 additions and 0 deletions

View File

@ -30,4 +30,12 @@ public class AuthorizationEndpointException extends AuthenticationServiceExcepti
public String getErrorURI() {
return errorURI;
}
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
return "AuthorizationEndpointException [error=" + error + ", errorDescription=" + errorDescription + ", errorURI=" + errorURI + "]";
}
}