Package org.openxri.server

Examples of org.openxri.server.ServerNotFoundException


        if (soLog.isDebugEnabled()) soLog.debug("Looking up authority by ID.");

        descriptor = moServer.lookupById(authorityId, segment, bSigned);
      }
     
      if (descriptor == null) throw new ServerNotFoundException("Null descriptor returned.");
    } catch(ServerNotFoundException ex) {

      soLog.warn("Got no descriptor from server.", ex);
      response.sendError(HttpServletResponse.SC_NOT_FOUND);
      return;
View Full Code Here

TOP

Related Classes of org.openxri.server.ServerNotFoundException

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.