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

jodd.petite.PetiteException Maven / Gradle / Ivy

Go to download

Jodd Petite is slick and lightweight DI container that uses annotations and supports sufficient most of features offered by other containers.

There is a newer version: 6.0.2
Show newest version
// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.

package jodd.petite;

import jodd.exception.UncheckedException;

/**
 * Petite exception.
 */
public class PetiteException extends UncheckedException {

	public PetiteException(Throwable t) {
		super(t);
	}

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

	public PetiteException(String message, Throwable t) {
		super(message, t);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy