
com.univocity.api.exception.IllegalConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of univocity-common-api Show documentation
Show all versions of univocity-common-api Show documentation
univocity public API - Common classes and utilites
The newest version!
/*
* Copyright (c) 2013 Univocity Software Pty Ltd. All rights reserved.
* This file is subject to the terms and conditions defined in file
* 'LICENSE.txt', which is part of this source code package.
*/
package com.univocity.api.exception;
/**
* {@code IllegalConfigurationException} is the exception thrown by univocity to notify of an illegal configuration.
*
* @author Univocity Software Pty Ltd - [email protected]
*/
public final class IllegalConfigurationException extends RuntimeException {
private static final long serialVersionUID = 8697369823358345165L;
/**
* Constructs a new {@code IllegalConfigurationException} exception with the specified detail message and cause.
*
* @param message the detail message.
* @param cause the cause of the exception.
*/
public IllegalConfigurationException(String message, Throwable cause) {
super(message, cause);
}
/**
* Constructs a new {@code IllegalConfigurationException} exception with the specified detail message, and no cause.
*
* @param message the detail message.
*/
public IllegalConfigurationException(String message) {
super(message);
}
/**
* Constructs a new {@code IllegalConfigurationException} exception with the specified cause of error.
*
* @param cause the cause of the exception.
*/
public IllegalConfigurationException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy