Subversion Repositories HomeAutomation

Rev

Go to most recent revision | 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:47:35
4
 */
5
package Macbeth.System;
6
 
7
/**
8
 * Thrown when a specific module wasn't found.
9
 */
10
public class MbModuleNotFoundException extends Exception {
11
    public MbModuleNotFoundException(String msg) {
12
        super(msg);
13
    }
14
}