aboutsummaryrefslogtreecommitdiff
path: root/src/java/com/e1/pdj/PDJClassLoaderException.java
blob: 547853c8aa65da64fc9925c83fce0b65723debb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.e1.pdj;

public class PDJClassLoaderException extends Exception {
    private static final long serialVersionUID = 8714491904913363787L;

    public PDJClassLoaderException(String msg) {
		super(msg);
	}
	
	public PDJClassLoaderException(String msg, Exception root) {
		super(msg, root);
	}

	public PDJClassLoaderException(Exception root) {
		super(root);
	}
}