gate.error.BadRequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gate Show documentation
Show all versions of gate Show documentation
A multipurpose java library
package gate.error;
import gate.annotation.Catcher;
import gate.catcher.BatdRequestExceptionCatcher;
@Catcher(BatdRequestExceptionCatcher.class)
public class BadRequestException extends AppException
{
private static final long serialVersionUID = 1L;
public BadRequestException()
{
super("Bad request");
}
public BadRequestException(String message)
{
super(message);
}
public BadRequestException(String module, String screen, String action)
{
super(String.format("Requisição inválida: MODULE=%s, SCREEN=%s, ACTION=%s",
module, screen, action));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy