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

com.shedhack.exception.core.BusinessCode Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
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