org.hpccsystems.commons.errors.IErrorCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-hpcc Show documentation
Show all versions of commons-hpcc Show documentation
Common library for HPCC functionality
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();
}