All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springmodules.validation.util.lang.NestedIllegalArgumentException Maven / Gradle / Ivy

There is a newer version: 0.8a
Show newest version
package org.springmodules.validation.util.lang;

import org.springframework.core.NestedRuntimeException;

/**
 * @author Uri Boness
 */
public class NestedIllegalArgumentException extends NestedRuntimeException {

    /**
     * Construct a NestedRuntimeException with the specified detail message.
     *
     * @param msg the detail message
     */
    public NestedIllegalArgumentException(String msg) {
        super(msg);
    }

    /**
     * Construct a NestedRuntimeException with the specified detail message
     * and nested exception.
     *
     * @param msg the detail message
     * @param cause the nested exception
     */
    public NestedIllegalArgumentException(String msg, Throwable cause) {
        super(msg, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy