001package bradleyross.library.helpers;
002import java.util.List;
003/**
004 * Interface for class providing extra information on
005 * exceptions.
006 * 
007 * @author Bradley Ross
008 *
009 */
010public interface ExceptionProcessor {
011        /**
012         * Generates a {@link List} of String objects based on
013         * the information in the exception.
014         * 
015         * @param e  exception
016         * @return message for incorporation in log
017         */
018        public List<String> getInformation(Exception e);
019}