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

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

package cz.mmsparams.api.exceptions;

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

public class TestInvalidException extends MmsParamsExceptionBase
{
    public TestInvalidException()
    {
        setTestErrorType(TestErrorType.WRONGLY_WRITTEN_TEST);
    }

    public TestInvalidException(String message)
    {
        super(message);
        setTestErrorType(TestErrorType.WRONGLY_WRITTEN_TEST);
    }

    public TestInvalidException(String message, Throwable cause)
    {
        super(message, cause);
        setTestErrorType(TestErrorType.WRONGLY_WRITTEN_TEST);
    }

    public TestInvalidException(Throwable cause)
    {
        super(cause);
        setTestErrorType(TestErrorType.WRONGLY_WRITTEN_TEST);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy