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

no.tornado.web.exceptions.ConversionFailed Maven / Gradle / Ivy

Go to download

A modern HTML5 Full Stack Web Framework that leverages Java 8 features for expressiveness and beautiful syntax.

The newest version!
package no.tornado.web.exceptions;

/**
 * 

ConversionFailed class.

* * @author edvin * @version $Id: $Id */ public class ConversionFailed extends RuntimeException { /** *

Constructor for ConversionFailed.

* * @param message a {@link java.lang.String} object. * @param cause a {@link java.lang.Throwable} object. */ public ConversionFailed(String message, Throwable cause) { super(message, cause); } /** *

Constructor for ConversionFailed.

* * @param cause a {@link java.lang.Throwable} object. */ public ConversionFailed(Throwable cause) { super(cause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy