Subversion Repositories bacoAlunos

Rev

Blame | Compare with Previous | Last modification | View Log | RSS feed

/*
 * Created on 16/Mai/2003
 */

package pt.utl.ist.berserk.storage.exceptions;


/**
 * @author lmac1
 */

public class CantDeletePersistentException extends StorageException {

        /**
         * Creates a new instance of <code>ExistingPersistentException</code> without detail message.
         */

        public CantDeletePersistentException() { }

        /**
         * Constructs an instance of <code>ExistingPersistentException</code> with the specified detail message.
         * @param msg the detail message.
         */

        public CantDeletePersistentException(1.5.0/docs/api/java/lang/String.html">String msg) {
                super(msg);
        }
        public 1.5.0/docs/api/java/lang/String.html">String toString() {
                        1.5.0/docs/api/java/lang/String.html">String result = "[CantDeletePersistentException\n";
                        result += "message" + this.getMessage() + "\n";
                        result += "error" + this.getErrorKey() + "\n";
                        result += "cause" + this.getCause() + "\n";
                        result += "]";
                        return result;
                }
}