PsyFileSystemErrorException.java
package coneforest.psylla.core;
import coneforest.psylla.runtime.*;
@SuppressWarnings("serial")
@ErrorType("filesystemerror")
public class PsyFileSystemErrorException
extends PsyIOErrorException
{
/**
* Constructs a new {@code exception} object with null as its detail message.
*/
public PsyFileSystemErrorException()
{
}
/**
* Constructs a new {@code exception} object with the specified cause.
*
* @param cause the cause.
*/
public PsyFileSystemErrorException(final Throwable cause)
{
super(cause);
}
}