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

com.softicar.platform.common.core.exceptions.SofticarUserException Maven / Gradle / Ivy

Go to download

The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.

There is a newer version: 50.0.0
Show newest version
package com.softicar.platform.common.core.exceptions;

import com.softicar.platform.common.core.i18n.IDisplayString;

/**
 * This exception should be thrown on user errors, e.g. input errors.
 * 

* Error messages shown to users should be localized and translated, that is why * this class only takes {@link IDisplayString}. * * @author Oliver Richers */ public class SofticarUserException extends SofticarException { private static final long serialVersionUID = 1L; public SofticarUserException(IDisplayString message) { super(message.toString()); } public SofticarUserException(Throwable cause, IDisplayString message) { super(cause, message.toString()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy