Package org.sonatype.nexus.proxy.ItemNotFoundException

Examples of org.sonatype.nexus.proxy.ItemNotFoundException.ItemNotFoundReason


    return filtered;
  }

  private Reasoning buildReasoning(final Throwable ex) {
    if (ex instanceof ItemNotFoundException) {
      final ItemNotFoundReason reason = ((ItemNotFoundException) ex).getReason();
      if (reason instanceof ItemNotFoundInRepositoryReason) {
        return buildReasoning(((ItemNotFoundInRepositoryReason) reason).getRepository().getId(), ex);
      }
    }
    return null;
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.proxy.ItemNotFoundException.ItemNotFoundReason

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.