All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mantledillusion.vaadin.cotton.exception.http500.Http500InternalServerErrorException Maven / Gradle / Ivy

Go to download

Cotton is a Vaadin extension destined for the ultimate of developer convenience.

There is a newer version: 2.3.4
Show newest version
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