001package com.hammurapi.common;
002
003public interface ExceptionHandler {
004
005        void handleException(Exception e);
006}