nyla.solutions.core.exception.ReadOnlyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nyla.solutions.core Show documentation
Show all versions of nyla.solutions.core Show documentation
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());
}
}