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