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

org.hpccsystems.commons.errors.HpccErrorCode Maven / Gradle / Ivy

There is a newer version: 9.8.38-1
Show newest version
package org.hpccsystems.commons.errors;

public enum HpccErrorCode implements IErrorCode
{

    UNCAUGHT_EXCEPTION(200), INFO(300);

    private int numVal;

    HpccErrorCode(int numVal)
    {
        this.numVal = numVal;
    }

    public Integer getNumVal()
    {
        return numVal;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy