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

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

The newest version!
package cz.mmsparams.api.exceptions;

import java.io.Serializable;

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

public class MmsParamsExceptionBase extends RuntimeException implements Serializable
{
    private TestErrorType testErrorType;

    public MmsParamsExceptionBase()
    {
    }

    public MmsParamsExceptionBase(String message)
    {
        super(message);
    }

    public MmsParamsExceptionBase(String message, Throwable cause)
    {
        super(message, cause);
    }

    public MmsParamsExceptionBase(Throwable cause)
    {
        super(cause);
    }

    public MmsParamsExceptionBase(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
    {
        super(message, cause, enableSuppression, writableStackTrace);
    }

    public TestErrorType getTestErrorType()
    {
        return testErrorType;
    }

    public void setTestErrorType(TestErrorType testErrorType)
    {
        this.testErrorType = testErrorType;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy