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

cz.mmsparams.api.exceptions.TestErrorException Maven / Gradle / Ivy

package cz.mmsparams.api.exceptions;

import java.io.Serializable;

import cz.mmsparams.api.websocket.model.error.TestErrorType;

public class TestErrorException extends MmsParamsExceptionBase implements Serializable
{
    public TestErrorException()
    {
        super();
        setTestErrorType(TestErrorType.TEST_ERROR);
    }

    public TestErrorException(String message)
    {
        super(message);
        setTestErrorType(TestErrorType.TEST_ERROR);
    }

    public TestErrorException(String message, Throwable cause)
    {
        super(message, cause);
        setTestErrorType(TestErrorType.TEST_ERROR);
    }

    public TestErrorException(Throwable cause)
    {
        super(cause);
        setTestErrorType(TestErrorType.TEST_ERROR);
    }

    public TestErrorException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
    {
        super(message, cause, enableSuppression, writableStackTrace);
        setTestErrorType(TestErrorType.TEST_ERROR);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy