java/sql-dk/src/main/java/info/globalcode/sql/dk/configuration/ConfigurationException.java
author František Kučera <franta-hg@frantovo.cz>
Tue, 30 Apr 2019 20:04:06 +0200
branchv_0
changeset 249 7655df0622ee
parent 238 4a1864c3e867
child 250 aae5009bd0af
permissions -rw-r--r--
change XMLNS for the configuration
Use The 'tag' URI Scheme <http://www.faqs.org/rfcs/rfc4151.html>
Upgrade local configuration:
sed 's@https://sql-dk.globalcode.info/xmlns/configuration@tag:globalcode.info,2018:sqldk/configuration@g' -i ~/.sql-dk/config.xml
franta-hg@33
     1
/**
franta-hg@33
     2
 * SQL-DK
franta-hg@33
     3
 * Copyright © 2013 František Kučera (frantovo.cz)
franta-hg@33
     4
 *
franta-hg@33
     5
 * This program is free software: you can redistribute it and/or modify
franta-hg@33
     6
 * it under the terms of the GNU General Public License as published by
franta-hg@33
     7
 * the Free Software Foundation, either version 3 of the License, or
franta-hg@33
     8
 * (at your option) any later version.
franta-hg@33
     9
 *
franta-hg@33
    10
 * This program is distributed in the hope that it will be useful,
franta-hg@33
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@33
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@33
    13
 * GNU General Public License for more details.
franta-hg@33
    14
 *
franta-hg@33
    15
 * You should have received a copy of the GNU General Public License
franta-hg@33
    16
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@33
    17
 */
franta-hg@33
    18
package info.globalcode.sql.dk.configuration;
franta-hg@33
    19
franta-hg@33
    20
import info.globalcode.sql.dk.DKException;
franta-hg@33
    21
franta-hg@33
    22
/**
franta-hg@33
    23
 *
franta-hg@33
    24
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@33
    25
 */
franta-hg@33
    26
public class ConfigurationException extends DKException {
franta-hg@33
    27
franta-hg@33
    28
	public ConfigurationException() {
franta-hg@33
    29
	}
franta-hg@33
    30
franta-hg@33
    31
	public ConfigurationException(String message) {
franta-hg@33
    32
		super(message);
franta-hg@33
    33
	}
franta-hg@33
    34
franta-hg@33
    35
	public ConfigurationException(Throwable cause) {
franta-hg@33
    36
		super(cause);
franta-hg@33
    37
	}
franta-hg@33
    38
franta-hg@33
    39
	public ConfigurationException(String message, Throwable cause) {
franta-hg@33
    40
		super(message, cause);
franta-hg@33
    41
	}
franta-hg@33
    42
}