
org.broadleafcommerce.common.exception.ExceptionHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of broadleaf-common Show documentation
Show all versions of broadleaf-common Show documentation
A collection of classes shared by broadleaf profile, cms, admin, and core.
/*
* #%L
* BroadleafCommerce Workflow
* %%
* Copyright (C) 2009 - 2013 Broadleaf Commerce
* %%
* 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.
* #L%
*/
package org.broadleafcommerce.common.exception;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.UndeclaredThrowableException;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* @author Jeff Fischer
*/
public class ExceptionHelper {
private static final Log LOG = LogFactory.getLog(ExceptionHelper.class);
public static RuntimeException refineException(Class refineType, Class wrapType, String message, Throwable e) {
if (refineType.isAssignableFrom(e.getClass())) {
return wrapException(e, wrapType, message);
}
if (e.getCause() != null) {
return refineException(refineType, wrapType, message, e.getCause());
}
if (e instanceof UndeclaredThrowableException) {
return refineException(refineType, wrapType, message, ((UndeclaredThrowableException) e).getUndeclaredThrowable());
}
if (e instanceof InvocationTargetException) {
return refineException(refineType, wrapType, message, ((InvocationTargetException) e).getTargetException());
}
return wrapException(e, wrapType, message);
}
public static RuntimeException refineException(Class refineType, Class wrapType, Throwable e) {
return refineException(refineType, wrapType, null, e);
}
public static RuntimeException refineException(Class wrapType, Throwable e) {
return refineException(RuntimeException.class, wrapType, null, e);
}
public static RuntimeException refineException(Throwable e) {
return refineException(RuntimeException.class, RuntimeException.class, null, e);
}
public static void processException(Class refineType, Class wrapType, String message, Throwable e) throws G {
if (refineType.isAssignableFrom(e.getClass())) {
throw (G) e;
}
if (e.getCause() != null) {
processException(refineType, wrapType, message, e.getCause());
}
if (e instanceof UndeclaredThrowableException) {
processException(refineType, wrapType, message, ((UndeclaredThrowableException) e).getUndeclaredThrowable());
}
if (e instanceof InvocationTargetException) {
processException(refineType, wrapType, message, ((InvocationTargetException) e).getTargetException());
}
throw wrapException(e, wrapType, message);
}
public static void processException(Class refineType, Class wrapType, Throwable e) throws G {
processException(refineType, wrapType, null, e);
}
public static void processException(Class wrapType, Throwable e) throws G {
processException(RuntimeException.class, wrapType, null, e);
}
public static void processException(Throwable e) throws G {
processException(RuntimeException.class, RuntimeException.class, null, e);
}
private static RuntimeException wrapException(Throwable e, Class wrapType, String message) {
if (e instanceof RuntimeException) {
return (RuntimeException) e;
}
try {
if (StringUtils.isEmpty(message)) {
return wrapType.getConstructor(Throwable.class).newInstance(e);
} else {
return wrapType.getConstructor(String.class, Throwable.class).newInstance(message, e);
}
} catch (Exception e1) {
LOG.error("Could not wrap exception", e1);
throw new RuntimeException(e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy