1 /*
2 * Created on Jun 26, 2005
3 *
4 */
5 package org.musicontroller.importer;
6
7 /**
8 * Exception class for exceptions occuring while importing
9 * new music into MusiController.
10 *
11 * @author drexler
12 * @version $Id: ImporterException.java,v 1.1 2010/03/16 18:55:43 varienaja Exp $
13 */
14 public class ImporterException extends Exception {
15
16 public ImporterException(String string) {
17 super(string);
18 }
19
20 public final static long serialVersionUID = 1L;
21 }