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

cz.mmsparams.api.websocket.model.error.TestErrorModel Maven / Gradle / Ivy

The newest version!
package cz.mmsparams.api.websocket.model.error;

import java.io.Serializable;

import cz.mmsparams.api.websocket.WebSocketModelBase;

public class TestErrorModel extends WebSocketModelBase implements Serializable
{
    private TestErrorType testErrorType;
    private String message;
    private Exception exception;

    public TestErrorType getTestErrorType()
    {
        return testErrorType;
    }

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

    public String getMessage()
    {
        return message;
    }

    public void setMessage(String message)
    {
        this.message = message;
    }

    public Exception getException()
    {
        return exception;
    }

    public void setException(Exception exception)
    {
        this.exception = exception;
    }

    @Override
    public String toString()
    {
        return "TestErrorModel{" +
                "testErrorType=" + testErrorType +
                ", message='" + message + '\'' +
                ", exception=" + exception +
                "} " + super.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy