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

com.dangdang.config.service.exception.InvalidPathException Maven / Gradle / Ivy

There is a newer version: 3.3.2-RELEASE
Show newest version
package com.dangdang.config.service.exception;

/**
 * The exception that the file is invalid
 * 
 * @author Yuxuan Wang
 *
 */
public class InvalidPathException extends ConfigToolkitException {

	private static final long serialVersionUID = 1L;

	public InvalidPathException() {
		super();
	}

	public InvalidPathException(String message, Throwable cause) {
		super(message, cause);
	}

	public InvalidPathException(String message) {
		super(message);
	}

	public InvalidPathException(Throwable cause) {
		super(cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy