All checks were successful
Build blog docker image / Build-Blog-Image (push) Successful in 49s
将图片压缩为webp格式减少流量使用和磁盘占用 Reviewed-on: #10
13 lines
284 B
C#
13 lines
284 B
C#
namespace YaeBlog.Core.Exceptions;
|
|
|
|
public class BlogCommandException : Exception
|
|
{
|
|
public BlogCommandException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public BlogCommandException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|