blob: 8b4e50cee03bf9738be0cfeb88319e8fafc1ea85 [file] [log] [blame]
// Copyright 2011 Google Inc. All Rights Reserved.
package adaptorlib;
import java.lang.Exception;
/** */
public class TransformException extends Exception {
public TransformException(Exception e) {
super(e);
}
public TransformException(String s) {
super(s);
}
}