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

it.bancaditalia.oss.vtl.impl.environment.exceptions.VTLInputException Maven / Gradle / Ivy

There is a newer version: 1.1.4
Show newest version
/*
 * Copyright © 2020 Banca D'Italia
 *
 * Licensed under the EUPL, Version 1.2 (the "License");
 * You may not use this work except in compliance with the
 * License.
 * You may obtain a copy of the License at:
 *
 * https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/2020-03/EUPL-1.2%20EN.txt
 *
 * Unless required by applicable law or agreed to in
 * writing, software distributed under the License is
 * distributed on an "AS IS" basis,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied.
 *
 * See the License for the specific language governing
 * permissions and limitations under the License.
 */
package it.bancaditalia.oss.vtl.impl.environment.exceptions;

import it.bancaditalia.oss.vtl.exceptions.VTLException;

public class VTLInputException extends VTLException
{
	private static final long serialVersionUID = 1L;

	public VTLInputException(String message)
	{
		this(message, null);
	}

	public VTLInputException(String message, Exception cause)
	{
		super("Error reading data from: " + message, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy