📄 childrowexistsfkexception.java
字号:
package net.java.workeffort.service.support;import java.util.List;import net.java.workeffort.infrastructure.exception.IPropertyException;import net.java.workeffort.infrastructure.exception.PropertyException;import org.springframework.dao.DataAccessException;/** * @author Antony Joseph */public class ChildRowExistsFkException extends DataAccessException implements IPropertyException, IServiceException { private String errorCode = "child.row.exists.fk.exception"; private IPropertyException pe = new PropertyException(); public ChildRowExistsFkException(String msg) { super(msg); } public ChildRowExistsFkException(String msg, Exception e) { super(msg, e); } public String getErrorCode() { return errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getCollectionName() { return pe.getCollectionName(); } public Object getGuiltyObj() { return pe.getGuiltyObj(); } public Integer getIndex() { return pe.getIndex(); } public String getPropertyName() { return pe.getPropertyName(); } public List getPropertyNameList() { return pe.getPropertyNameList(); } public boolean isIndexed() { return pe.isIndexed(); } public boolean isMultiProperty() { return pe.isMultiProperty(); } public void setCollectionName(String collectionName) { pe.setCollectionName(collectionName); } public void setGuiltyObj(Object guiltyObj) { pe.setGuiltyObj(guiltyObj); } public void setIndex(Integer index) { pe.setIndex(index); } public void setPropertyName(String propertyName) { pe.setPropertyName(propertyName); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -