feat: 从Bootstrap迁移到Tailwind css (#9)
All checks were successful
Build blog docker image / Build-Blog-Image (push) Successful in 1m15s

Reviewed-on: #9
This commit is contained in:
2025-01-24 16:46:56 +08:00
parent 1ceaf30061
commit 3aae468e65
85 changed files with 1660 additions and 951 deletions

View File

@@ -0,0 +1,19 @@
namespace YaeBlog.Core.Exceptions;
public class BlogFileException : Exception
{
public BlogFileException() : base()
{
}
public BlogFileException(string message) : base(message)
{
}
public BlogFileException(string message, Exception innerException) : base(message, innerException)
{
}
}