org.hpccsystems.commons.errors.IErrorCode Maven / Gradle / Ivy
package org.hpccsystems.commons.errors;
/**
 * Interface defining an error code.
 * 
 * An error code is defined as having a name and a numeric (integer) value
 * 
 */
public interface IErrorCode
{
    /**
     * Name.
     *
     * @return the string
     */
    String name();
    /**
     * Gets the num val.
     *
     * @return the num val
     */
    Integer getNumVal();
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy