com.github.zg2pro.spring.rest.basis.exceptions.StackTracedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-rest-basis Show documentation
Show all versions of spring-rest-basis Show documentation
A library of tools that come handy when doing spring-rest development
The newest version!
/*
* The MIT License
*
* Copyright 2017 zg2pro.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.github.zg2pro.spring.rest.basis.exceptions;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* error resource exception generator
*
* @author zg2pro
* @since 0.2
*/
public class StackTracedException extends Exception {
private static final long serialVersionUID = 3450724120497219309L;
private static final Logger logger = LoggerFactory.getLogger(StackTracedException.class);
/**
* generates a stack trace from a serialized equivalent
*
* @param lste list of traces in the stack
* @return the stacktrace
*/
public static StackTraceElement[] mapper(Zg2proStackTrace lste) {
List stack = new ArrayList<>();
for (Zg2proStackTraceElement nste : lste) {
StackTraceElement ste = new StackTraceElement(nste.getDeclaringClass(),
nste.getMethodName(), nste.getFileName(), nste.getLineNumber());
stack.add(ste);
}
return stack.toArray(new StackTraceElement[stack.size()]);
}
/**
* constructor
*
* @param errorResource StackTracedExcetion serialized
*/
public StackTracedException(ErrorResource errorResource) {
super("HttpStatus:" + errorResource.getCode() + " - " + errorResource.getErrorMessage());
try {
// Non predifined error class. So we must use reflection method
Class excClazz = Class.forName(errorResource.getErrorClassName());
Object o = excClazz.getDeclaredConstructor().newInstance();
((Throwable) o).setStackTrace(mapper(errorResource.getStackTrace()));
initCause((Throwable) o);
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | ClassCastException | NoSuchMethodException | IllegalArgumentException | InvocationTargetException cnfe) {
super.setStackTrace(mapper(errorResource.getStackTrace()));
logger.warn("exception occured when mapping an exception {}", cnfe);
}
}
}