You've already forked FrameTour-BE
- 移除专用人脸匹配管线实现,统一使用通用管线模块 - 更新所有Stage类继承自通用管线Stage基类 - 调整包路径引用从face.pipeline到pipeline.core - 修改上下文类实现通用管线上下文接口 - 删除冗余的人脸匹配专用注解和枚举类 - 更新工厂类引用至新的通用管线构建器 - 保持Stage功能逻辑不变仅调整继承结构
20 lines
404 B
Java
20 lines
404 B
Java
package com.ycwl.basic.pipeline.exception;
|
|
|
|
/**
|
|
* 通用 Pipeline 执行异常。
|
|
*/
|
|
public class PipelineException extends RuntimeException {
|
|
|
|
public PipelineException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public PipelineException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public PipelineException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
}
|