ClassImportException.java 579 B

12345678910111213141516171819202122232425
  1. package de.tu_darmstadt.tk.SmartHomeNetworkSim.control;
  2. /**
  3. * Import Exception to be thrown if Exceptions occur during class import.
  4. *
  5. * @author Andreas T. Meyer-Berg
  6. */
  7. public class ClassImportException extends Exception {
  8. /**
  9. * Serial Version
  10. */
  11. private static final long serialVersionUID = -6450062037053760733L;
  12. /**
  13. * Creates a new exception which contains a message for the
  14. * problem which occurred during class import
  15. *
  16. * @param msg Exception message which is source of the error
  17. */
  18. public ClassImportException(String msg) {
  19. super(msg);
  20. }
  21. }