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

ModifyVetoException

public class ModifyVetoException extends Exception
This exception is thrown if a {@link org.jaudiotagger.audio.generic.AudioFileModificationListener} wants to prevent the "e;entagged audio library"e; from actually finishing its operation.
This exception can be used in all methods but {@link org.jaudiotagger.audio.generic.AudioFileModificationListener#fileOperationFinished(java.io.File)}.
author
Christian Laireiter

Fields Summary
Constructors Summary
public ModifyVetoException()
(overridden)

        super();
    
public ModifyVetoException(String message)
(overridden)

param
message
see
Exception#Exception(java.lang.String)

        super(message);
    
public ModifyVetoException(String message, Throwable cause)
(overridden)

param
message
param
cause
see
Exception#Exception(java.lang.String,java.lang.Throwable)

        super(message, cause);
    
public ModifyVetoException(Throwable cause)
(overridden)

param
cause
see
Exception#Exception(java.lang.Throwable)

        super(cause);
    
Methods Summary