org.mod4j.runtime.exception.TranslatorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mod4j-runtime-common Show documentation
Show all versions of mod4j-runtime-common Show documentation
This module contains a small number of Java classes and Spring configuration files used in applications generated by
mod4j.
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