📄 fieldvalidationexception.java
字号:
package com.sslexplorer.core;
public class FieldValidationException extends Exception {
private String resourceKey;
/**
* Constructor
*
* @param resourceKey resource key to use for exception text
*/
public FieldValidationException(String resourceKey){
super(); // Call default Super Constructor
this.resourceKey = resourceKey;
}
/**
* Get the resource key to use for the
* field validation exception text
*
* @return resource key to use for message
*/
public String getResourceKey() {
return resourceKey;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -