br.com.andrewribeiro.ribrest.exceptions.RibrestDefaultExceptionConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Ribrest Show documentation
Show all versions of Ribrest Show documentation
Ribrest Framework - A simple Java framework that truly improve your productivity when developing restful based webservices.
package br.com.andrewribeiro.ribrest.exceptions;
/**
*
* @author Andrew Ribeiro
*/
public class RibrestDefaultExceptionConstants {
public static String RESOURCE_IS_ABSTRACT = "RESOURCE_IS_ABSTRACT";
public static String RESOURCE_IS_NOT_IMODEL_SUBCLASS = "RESOURCE_IS_NOT_IMODEL_SUBCLASS";
public static String RESOURCE_DOESNT_IMPLEMENTS_ABSTRACT_METHODS = "RESOURCE_DOESNT_IMPLEMENTS_ABSTRACT_METHODS";
public static String RESOURCE_ISNT_AN_ENTITY = "RESOURCE_ISNT_AN_ENTITY";
}