Blame |
Last modification |
View Log
| SVN
| RSS feed
/*
* File created by Jimmy
* at 2004-jan-20 19:47:35
*/
package Macbeth.System;
/**
* Thrown when a specific module wasn't found.
*/
public class MbModuleNotFoundException
extends Exception {
public MbModuleNotFoundException
(String msg
) {
super(msg);
}
}