package org.egl_cepgl.pm.exception;

public enum ErrorCodes
{
    USER_NOT_FOUND(1000),
    USER_NOT_VALID(1001),
    BAD_CREDENTIALS(2000);

    private int code;

    ErrorCodes(int code){
        this.code= code;
    }

    public int getCode(){
        return this.code;
    }
}
