Initial AP objects implementation

This commit is contained in:
2024-02-21 11:07:26 -03:00
parent a0b15f6526
commit f9dedca988
5 changed files with 167 additions and 1 deletions

10
source/ap/errors.d Normal file
View File

@@ -0,0 +1,10 @@
module ap.errors;
/++
* Base exception for ActivityPub
+/
class APException : Exception {
this(string msg) {
super(msg);
}
}