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

org.hpccsystems.commons.errors.IErrorSource 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 IErrorSource { /** * Name. * * @return the string */ String name(); /** * Gets the num val. * * @return the num val */ Integer getNumVal(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy