2013-09-16 22:46:50 +08:00

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);
}
}