MapExceptionParent.java 163 字节
Newer Older
1 2 3 4 5 6 7 8 9
package org.activiti5.camel;

public class MapExceptionParent extends Exception {

  public MapExceptionParent(String string) {
    super(string);
  }

}