Subversion Repositories HomeAutomation

Rev

Rev 15 | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 15 Rev 73
1
/*
1
/*
2
 * File created by Jimmy
2
 * File created by Jimmy
3
 * at 2004-jan-20 19:47:35
3
 * at 2004-jan-20 19:47:35
4
 */
4
 */
5
package Macbeth.System;
5
package Macbeth.System;
6
 
6
 
7
/**
7
/**
8
 * Thrown when a specific module wasn't found.
8
 * Thrown when a specific module wasn't found.
9
 */
9
 */
10
public class MbModuleNotFoundException extends Exception {
10
public class MbModuleNotFoundException extends Exception {
11
    public MbModuleNotFoundException(String msg) {
11
    public MbModuleNotFoundException(String msg) {
12
        super(msg);
12
        super(msg);
13
    }
13
    }
14
}
14
}
15
 
15