1 package org.sourceforge.jemm.client;
2
3 import org.sourceforge.jemm.BaseException;
4
5 public class DescriptorParsingException extends BaseException {
6 private static final long serialVersionUID = 1L;
7
8 public DescriptorParsingException(String message, Throwable throwable) {
9 super(message, throwable);
10 }
11
12 public DescriptorParsingException(String message) {
13 super(message);
14 }
15 }