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

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

package org.hpccsystems.commons.errors;

public enum HpccErrorSource implements IErrorSource
{

    COMMONS(100);

    private int numVal;

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

    public Integer getNumVal()
    {
        return numVal;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy