0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-25 08:12:37 +01:00

ircd: Fix comment.

This commit is contained in:
Jason Volk 2017-10-04 18:10:00 -07:00
parent edcd95cd8f
commit d83ea848da

View file

@ -139,14 +139,14 @@ struct name \
} \
};
namespace ircd
{
/// Root error exception type. Inherit from this.
/// List your own exception somewhere else (unless you're overhauling libircd).
/// example, in your namespace:
///
/// IRCD_EXCEPTION(ircd::error, error)
///
namespace ircd
{
IRCD_EXCEPTION(exception, error) // throw ircd::error("something bad")
IRCD_EXCEPTION(error, user_error) // throw ircd::user_error("something silly")
}