org.hpccsystems.commons.errors.HpccErrorCode 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;
public enum HpccErrorCode implements IErrorCode
{
UNCAUGHT_EXCEPTION (
200
), INFO (
300
);
private int numVal;
/**
* Instantiates a new hpcc error code.
*
* @param numVal
* the num val
*/
HpccErrorCode(int numVal)
{
this.numVal = numVal;
}
/*
* (non-Javadoc)
*
* @see org.hpccsystems.commons.errors.IErrorCode#getNumVal()
*/
public Integer getNumVal()
{
return numVal;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy