package org.oauth2.client4j.exception;
public class OAuthException extends RuntimeException
{
private static final long serialVersionUID = -7095006725958972685L;
public OAuthException()
{
}
public OAuthException(String msg)
{
super(msg);
}
public OAuthException(Exception e)
{
super("".equals(e.getMessage()) ? e.toString() : e.getMessage());
}
}