
com.shedhack.exception.core.BusinessCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exception-core Show documentation
Show all versions of exception-core Show documentation
Generic Exception Library to be used with HTTP services.
package com.shedhack.exception.core;
/**
* Business Codes interface, provides clients with meaningful codes + descriptions.
*
* @author imamchishty
*/
public interface BusinessCode {
/**
* Short code which represents a business issue.
* @return String business code.
*/
String getCode();
/**
* Full description of the business code.
* @return String description.
*/
String getDescription();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy