package com.casic.model;


public class ErrorResponseData extends ResponseData {
    private String exceptionClazz;

    public String getExceptionClazz() {
        return this.exceptionClazz;
    }


    public ErrorResponseData(String message) {
        super(false, ResponseData.DEFAULT_ERROR_CODE, message, (Object)null);
    }


    public void setExceptionClazz(String exceptionClazz) {
        this.exceptionClazz = exceptionClazz;
    }
    @Override
    protected boolean canEqual(Object other) {
        return other instanceof ErrorResponseData;
    }

    @Override
    public String toString() {
        return "ErrorResponseData(exceptionClazz=" + this.getExceptionClazz() + ")";
    }
}
