feat: 项目整体命名修改cache-schema-checker
All checks were successful
缓存序列化结构检查 / cache-schema-check (push) Has been skipped

This commit is contained in:
2026-07-14 11:03:34 +08:00
parent 114b053733
commit 110beb79c0
42 changed files with 197 additions and 199 deletions

View File

@@ -0,0 +1,15 @@
package com.codechecker.cache.git;
/**
* Git 操作异常。
*/
public class GitException extends Exception {
public GitException(String message) {
super(message);
}
public GitException(String message, Throwable cause) {
super(message, cause);
}
}