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

io.rocketbase.commons.exception.ErrorCodes Maven / Gradle / Ivy

package io.rocketbase.commons.exception;

import lombok.Getter;

public enum ErrorCodes {
    FORM_ERROR(1000);

    @Getter
    private int status;

    ErrorCodes(int status) {
        this.status = status;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy