Back to project page tape.
The source code is released under:
Apache License
If you think the Android project tape listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// Copyright 2012 Square, Inc. package com.squareup.tape; /*from w w w .j a v a 2s .c om*/ import java.io.File; import java.io.IOException; /** Encapsulates an {@link IOException} in an extension of {@link RuntimeException}. */ public class FileException extends RuntimeException { private final File file; public FileException(String message, IOException e, File file) { super(message, e); this.file = file; } public File getFile() { return file; } }