![JAR search and dependency download from the Maven repository](/logo.png)
com.mantledillusion.vaadin.cotton.exception.http500.Http500InternalServerErrorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cotton Show documentation
Show all versions of cotton Show documentation
Cotton is a Vaadin extension destined for the ultimate of developer convenience.
package com.mantledillusion.vaadin.cotton.exception.http500;
import com.mantledillusion.vaadin.cotton.exception.WebException;
public class Http500InternalServerErrorException extends WebException {
private static final long serialVersionUID = 1L;
public Http500InternalServerErrorException(String message) {
super("An internal error occurred", message);
}
public Http500InternalServerErrorException(String message, Exception e) {
super("An internal error occurred", message, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy