mirror of
https://github.com/theonedev/onedev.git
synced 2025-12-08 18:26:30 +00:00
13 lines
268 B
Java
13 lines
268 B
Java
package com.pmease.commons.editable;
|
|
|
|
import com.pmease.commons.util.GeneralException;
|
|
|
|
@SuppressWarnings("serial")
|
|
public class ValidationException extends GeneralException {
|
|
|
|
public ValidationException(String format, Object... args) {
|
|
super(format, args);
|
|
}
|
|
|
|
}
|