Class EmbeddedRegistrationNotAllowedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.broadleafcommerce.auth.user.session.embedded.EmbeddedRegistrationNotAllowedException
-
- All Implemented Interfaces:
Serializable
public class EmbeddedRegistrationNotAllowedException extends RuntimeException
Indicates that there was an attempt to register a user using embedded registration when theAuthorizationServer
receiving the request did not allow embedded registration.- Author:
- Nathan Moore (nathandmoore)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EmbeddedRegistrationNotAllowedException(String authServerId, String clientId)
EmbeddedRegistrationNotAllowedException(String authServerId, String clientId, String message)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAuthServerId()
ID of theAuthorizationServer
that received the request.String
getClientId()
ID of theAuthorizedClient
that received the request.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
getAuthServerId
public String getAuthServerId()
ID of theAuthorizationServer
that received the request.
-
getClientId
public String getClientId()
ID of theAuthorizedClient
that received the request.
-
-