Package org.sonatype.nexus.proxy

Examples of org.sonatype.nexus.proxy.StorageException


    }
    catch (final ItemNotFoundException e) {
      // OBR metadata is missing, so drop through and provide blank repository
    }
    catch (final IllegalOperationException e) {
      throw new StorageException(e);
    }

    return new DefaultStorageFileItem(repository, request, true, true, new StringContentLocator("<repository/>"));
  }
View Full Code Here


      }

      writer.complete(); // the OBR is only updated once the stream is complete and closed
    }
    catch (final IOException e) {
      throw new StorageException(e);
    }
    finally {
      // avoid file locks by closing reader first
      IOUtils.closeQuietly(reader);
      IOUtils.closeQuietly(writer);
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.proxy.StorageException

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.