Blame |
Last modification |
View Log
| SVN
| RSS feed
/*
* File created by Jimmy
* at 2004-mar-10 00:40:52
*/
package Macbeth.System;
/**
* Thrown when a specific component couldn't be started up.
*/
public class MbStartupException
extends Exception {
public MbStartupException
(String msg
) {
super(msg);
}
}