org.hpccsystems.commons.errors.IErrorSource 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 IErrorSource
{
String name();
Integer getNumVal();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy