Subversion Repositories HomeAutomation

Rev

Details | Last modification | View Log | SVN | RSS feed

Rev Author Line No. Line
15 arune 1
/*
2
 * File created by Jimmy
3
 * at 2004-jan-20 19:46:54
4
 */
5
package Macbeth.System;
6
 
7
/**
8
 * Thrown when a specific module couldn't be loaded.
9
 */
10
public class MbModuleLoadException extends Exception {
11
    public MbModuleLoadException(String msg) {
12
        super(msg);
13
    }
14
}