com.helger.commons.exception.LoggedIOException Maven / Gradle / Ivy
/**
* Copyright (C) 2014-2015 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.helger.commons.exception;
import java.io.IOException;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This is a wrapper for a exception that can log the passed exception when it
* is thrown.
*
* @author Philip Helger
*/
public class LoggedIOException extends IOException implements ILoggedException
{
/**
* The default setting, whether runtime exceptions are logged, if no parameter
* is specified.
*/
public static final boolean DEFAULT_DO_LOG = true;
public static final String MSG_TEXT = "IOException created.";
private static final Logger s_aLogger = LoggerFactory.getLogger (Logger.ROOT_LOGGER_NAME);
public LoggedIOException ()
{
this (DEFAULT_DO_LOG);
}
public LoggedIOException (final boolean bLog)
{
super ();
if (bLog)
s_aLogger.error (MSG_TEXT, this);
}
public LoggedIOException (@Nullable final String sMsg)
{
this (DEFAULT_DO_LOG, sMsg);
}
public LoggedIOException (final boolean bLog, @Nullable final String sMsg)
{
super (sMsg);
if (bLog)
s_aLogger.error (MSG_TEXT, this);
}
public LoggedIOException (@Nullable final Throwable t)
{
this (DEFAULT_DO_LOG, t);
}
public LoggedIOException (final boolean bLog, @Nullable final Throwable t)
{
super (t);
if (bLog)
s_aLogger.error (MSG_TEXT, this);
}
public LoggedIOException (@Nullable final String sMsg, @Nullable final Throwable t)
{
this (DEFAULT_DO_LOG, sMsg, t);
}
public LoggedIOException (final boolean bLog, @Nullable final String sMsg, @Nullable final Throwable t)
{
super (sMsg, t);
if (bLog)
s_aLogger.error (MSG_TEXT, this);
}
@Nonnull
public static IOException newException (@Nullable final Throwable t)
{
if (t instanceof LoggedIOException)
return (LoggedIOException) t;
if (t instanceof ILoggedException)
return new IOException (t);
return new LoggedIOException (t);
}
@Nonnull
public static IOException newException (@Nullable final String sMsg, @Nullable final Throwable t)
{
if (t instanceof LoggedIOException)
return (LoggedIOException) t;
if (t instanceof ILoggedException)
return new IOException (sMsg, t);
return new LoggedIOException (sMsg, t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy