package net.csdn.exception; /** * BlogInfo: WilliamZhu * Date: 12-6-6 * Time: 上午11:00 */ public class ArgumentErrorException extends RuntimeException { public ArgumentErrorException(String message) { super(message); } }