com.rathravane.clerk.exceptions.IamBadRequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clerk Show documentation
Show all versions of clerk Show documentation
A framework for user identification, authentication, and access control.
package com.rathravane.clerk.exceptions;
public class IamBadRequestException extends Exception
{
public IamBadRequestException ( String msg ) { super ( msg ); }
public IamBadRequestException ( Throwable t ) { super ( t ); }
public IamBadRequestException ( String msg, Throwable t ) { super ( msg, t ); }
private static final long serialVersionUID = 1L;
}