Start line:  
End line:  

Snippet Preview

Snippet HTML Code

Stack Overflow Questions
I am following this great discussion at SO, titled: The case against checked exceptions , but I am unable to follow where exactly RuntimeException should be used and how it is different from normal Exceptions and its subclasses. Googling gave me a complex answer, that is, it should be used to deal with programming logic errors and should be thrown when no Exception should normally occur, such a...
I've written an application that runs flawlessly in windows, and throws this error on unix. Generally, I dont understand why I'm getting this error! I create a single file and .append text to it. After I've appended a couple thousand lines I got this error... Any insight would be appreciated. Nothing in the javadoc listed this (too many files open) error - http://java.sun.com/j2se/1.4.2/do...
 /*
  * Copyright 1994-1999 Sun Microsystems, Inc.  All Rights Reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Sun designates this
  * particular file as subject to the "Classpath" exception as provided
  * by Sun in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
 * CA 95054 USA or visit www.sun.com if you need additional information or
 * have any questions.
 */
package java.io;


Signals that an attempt to open the file denoted by a specified pathname has failed.

This exception will be thrown by the FileInputStream, FileOutputStream, and RandomAccessFile constructors when a file with the specified pathname does not exist. It will also be thrown by these constructors if the file does exist but for some reason is inaccessible, for example when an attempt is made to open a read-only file for writing.

Author(s):
unascribed
Since:
JDK1.0
public class FileNotFoundException extends IOException {

    
Constructs a FileNotFoundException with null as its error detail message.
    public FileNotFoundException() {
        super();
    }

    
Constructs a FileNotFoundException with the specified detail message. The string s can be retrieved later by the java.lang.Throwable.getMessage() method of class java.lang.Throwable.

Parameters:
s the detail message.
    public FileNotFoundException(String s) {
        super(s);
    }

    
Constructs a FileNotFoundException with a detail message consisting of the given pathname string followed by the given reason string. If the reason argument is null then it will be omitted. This private constructor is invoked only by native I/O methods.

Since:
1.2
    private FileNotFoundException(String pathString reason) {
        super(path + ((reason == null)
                      ? ""
                      : " (" + reason + ")"));
    }
New to GrepCode? Check out our FAQ X