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

com.softicar.platform.common.core.exceptions.SofticarDeveloperException 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;

/**
 * This exception should be thrown on logic errors.
 * 

* Logic errors are caused by erroneous code, and are aimed to be received by * developers and not users. *

* An example of a logic error is {@link SofticarUnknownEnumConstantException}. * * @author Oliver Richers */ public class SofticarDeveloperException extends SofticarException { private static final long serialVersionUID = 1L; public SofticarDeveloperException(String message) { super(message); } public SofticarDeveloperException(String format, Object...args) { super(format, args); } public SofticarDeveloperException(Throwable cause) { super(cause); } public SofticarDeveloperException(Throwable cause, String message) { super(cause, message); } public SofticarDeveloperException(Throwable cause, String format, Object...args) { super(cause, format, args); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy