org.picocontainer.logging.store.LoggerStoreCreationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of picocontainer-logging Show documentation
Show all versions of picocontainer-logging Show documentation
Component that allows logging that honours the Dependency Injection paradigm. It does not depend on
PicoContainer and can be used by any container wanting to configure independent logging for different applications
deployed in the same JVM.
The newest version!
/*
* Copyright (C) PicoContainer Organization. All rights reserved.
* --------------------------------------------------------------------------
* The software in this package is published under the terms of the BSD style
* license a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.picocontainer.logging.store;
/**
* Thrown when a logger store creation fails
*
* @author Mauro Talevi
*/
@SuppressWarnings("serial")
public class LoggerStoreCreationException extends RuntimeException {
public LoggerStoreCreationException(String message) {
super(message);
}
public LoggerStoreCreationException(String message, Throwable cause) {
super(message, cause);
}
}