// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package org.apache.oltu.oauth2.client.response; import org.apache.oltu.oauth2.common.exception.OAuthProblemException; public class OAuthErrorResponse { private String error; private String errorDescription; private String errorUri; private String state; public OAuthErrorResponse(OAuthProblemException oauthproblemexception) { error = oauthproblemexception.getError(); errorDescription = oauthproblemexception.getDescription(); errorUri = oauthproblemexception.getUri(); state = oauthproblemexception.getState(); } public String getError() { return error; } public String getErrorDescription() { return errorDescription; } public String getErrorUri() { return errorUri; } public String getState() { return state; } }