Package org.dspace.services.model.RequestInterceptor

Examples of org.dspace.services.model.RequestInterceptor.RequestInterruptionException


                try {
                    requestInterceptor.onStart(req.getRequestId(), req.getSession());
                } catch (RequestInterruptionException e) {
                    String message = "Request stopped from starting by exception from the interceptor ("+requestInterceptor+"): " + e.getMessage();
                    log.warn(message);
                    throw new RequestInterruptionException(message, e);
                } catch (Exception e) {
                    log.warn("Request interceptor ("+requestInterceptor+") failed to execute on start ("+req.getRequestId()+"): " + e.getMessage());
                }
            }
        }
View Full Code Here

TOP

Related Classes of org.dspace.services.model.RequestInterceptor.RequestInterruptionException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.