FileNameNotMatchException.java

package com.sintia.ffl.admin.optique.catalogue.util;

/**
 * Launched when a file name does not match the corresponding regex
 * 
 * @author jumazet
 */
public class FileNameNotMatchException extends Exception {

	private static final long serialVersionUID = 1L;

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

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