Subversion Repositories HomeAutomation

Rev

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

  1. /*
  2.  * File created by Jimmy
  3.  * at 2004-mar-28 15:37:32
  4.  */
  5. package Macbeth.System;
  6.  
  7. /**
  8.  * Thrown when an action couldn't be performed.
  9.  */
  10. public class MbActionNotPerformedException extends Exception {
  11.     public MbActionNotPerformedException(String msg) {
  12.         super(msg);
  13.     }
  14. }
  15.