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

org.mod4j.runtime.exception.TranslatorException Maven / Gradle / Ivy

Go to download

This module contains a small number of Java classes and Spring configuration files used in applications generated by mod4j.

There is a newer version: 1.3.0
Show newest version
package org.mod4j.runtime.exception;

/**
 * Thrown when a dto could not be translated to- or from a business class.
 * 
 * @author Johan Vogelzang
 * 
 */
@SuppressWarnings("serial")
public class TranslatorException extends RuntimeException {

    /**
     * @param message
     *            The detail message. The detail message is saved for later retrieval by the {@link #getMessage()}
     *            method.
     */
    public TranslatorException(String message) {
        super(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy