summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/scripting/ScriptLoadingException.java
blob: 16f9ab5baed53032a5c65d241fa30844f71edf58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.c2kernel.scripting;

/**************************************************************************
 *
 * $Revision: 1.1 $
 * $Date: 2003/04/06 12:32:51 $
 *
 * Copyright (C) 2003 CERN - European Organization for Nuclear Research
 * All rights reserved.
 **************************************************************************/
public class ScriptLoadingException extends ScriptingEngineException {
  /**
     *
     */
    public ScriptLoadingException() {
        super();
    }
    /**
     *
     */
    public ScriptLoadingException(String msg) {
        super(msg);
    }
}