userexistsexception.java
来自「this is for appfuse1.8 source using stru」· Java 代码 · 共 25 行
JAVA
25 行
package org.appfuse.service;/** * An exception that is thrown by classes wanting to trap unique * constraint violations. This is used to wrap Spring's * DataIntegrityViolationException so it's checked in the web layer. * * <p><a href="UserExistsException.java.html"><i>View Source</i></a></p> * * @author <a href="mailto:matt@raibledesigns.com">Matt Raible</a> */public class UserExistsException extends Exception { private static final long serialVersionUID = 4050482305178810162L; /** * Constructor for UserExistsException. * * @param message */ public UserExistsException(String message) { super(message); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?