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

nyla.solutions.core.exception.ReadOnlyException Maven / Gradle / Ivy

Go to download

This Java API provides support for application utilities (application configuration, data encryption, debugger, text processing, and more).

The newest version!
package nyla.solutions.core.exception;

import java.util.HashMap;
import java.util.Map;

/**
 * 
 * ReadOnlyException used to indicate that a given field is read only.
 * 
* @author Gregory Green * @version 1.0 */ public class ReadOnlyException extends DataException { /** * Comment for serialVersionUID */ private static final long serialVersionUID = -4137544711334684776L; /** * Constructor for RequiredException initializes internal * data settings. * @param field the field */ public ReadOnlyException(String field) { super(new StringBuilder() .append(field) .append(" is read only").toString()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy