com.gistlabs.mechanize.exceptions.MechanizeInitializationException Maven / Gradle / Ivy
/**
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package com.gistlabs.mechanize.exceptions;
/**
* Thrown in case of an initialization exception.
*
* @author Martin Kersten
*/
public class MechanizeInitializationException extends MechanizeException {
private static final long serialVersionUID = 1L;
public MechanizeInitializationException() {
super();
}
public MechanizeInitializationException(String message, Throwable cause) {
super(message, cause);
}
public MechanizeInitializationException(String message) {
super(message);
}
public MechanizeInitializationException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy