Package org.apache.rat.document

Examples of org.apache.rat.document.UnreadableArchiveException


      super(DocumentImplUtils.toName(file));
        this.file = file;
    }

    public IDocumentCollection readArchive() throws IOException {
        throw new UnreadableArchiveException("This file is not an archive");
    }
View Full Code Here


  public AbstractMonolithicDocument(String pName) {
    name = pName;
  }

  public IDocumentCollection readArchive() throws IOException {
        throw new UnreadableArchiveException("This file is not an archive");
    }
View Full Code Here

        buffer.append("']");
        return buffer.toString();
    }

    public IDocumentCollection readArchive() throws IOException {
        throw new UnreadableArchiveException();
    }
View Full Code Here

                final File file = fileResource.getFile();
                results = ZipDocumentFactory.load(file);
            }
            else
            {
                throw new UnreadableArchiveException();
            }
            return results;
        }
View Full Code Here

TOP

Related Classes of org.apache.rat.document.UnreadableArchiveException

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.