FileDocCategorySizeDatePackage
UnableToCreateFileException.javaAPI DocJaudiotagger 2.0.4431Wed Mar 30 16:11:46 BST 2011org.jaudiotagger.audio.exceptions

UnableToCreateFileException.java

package org.jaudiotagger.audio.exceptions;

import java.io.IOException;

/**
 * Should be thrown when unable to create a file when it is expected it should be creatable. For example because
 * you dont have permission to write to the folder that it is in.
 */
public class UnableToCreateFileException extends IOException
{
    public UnableToCreateFileException(String message)
    {
        super(message);
    }
}