Blame |
Last modification |
View Log
| SVN
| RSS feed
/*
* File created by Jimmy
* at 2004-mar-28 15:37:32
*/
package Macbeth.System;
/**
* Thrown when an action couldn't be performed.
*/
public class MbActionNotPerformedException
extends Exception {
public MbActionNotPerformedException
(String msg
) {
super(msg);
}
}