Package org.onebusaway.exceptions

Examples of org.onebusaway.exceptions.ServiceException


      return pjp.proceed();
    } catch (ServiceException ex) {
      throw ex;
    } catch (Throwable ex) {
      _log.error("error executing TransitDataService method", ex);
      throw new ServiceException(ex);
    }
  }
View Full Code Here


    if (ann7 != null) {
      Class<? extends FederatedServiceMethodInvocationHandler> handlerClass = ann7.handler();
      try {
        return handlerClass.newInstance();
      } catch (Exception ex) {
        throw new ServiceException(
            "error creating FederatedServiceMethodInvocationHandler of type "
                + handlerClass, ex);
      }
    }
View Full Code Here

TOP

Related Classes of org.onebusaway.exceptions.ServiceException

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.