View Javadoc
1   /**
2    * Copyright By Grandsoft Company Limited.  
3    * 2013-9-5 下午07:30:32
4    */
5   package gboat2.approveflow.service;
6   
7   import gboat2.base.bridge.exception.GboatNestedException;
8   
9   
10  /**
11   * 审批流异常
12   * @author lysming
13   * @since jdk1.6
14   * @date 2013-9-5
15   *  
16   */
17  
18  public class ApproveFlowException extends GboatNestedException {
19  
20      private static final long serialVersionUID = 1L;
21  
22      public ApproveFlowException(String message){
23  		super(message);
24  	}
25  }