@@ -20,11 +20,11 @@ #import "OFDNSResolver.h" #import "OFDNSResourceRecord.h" OF_ASSUME_NONNULL_BEGIN -/*! +/** * @class OFDNSQueryFailedException \ * OFDNSQueryFailedException.h ObjFW/OFDNSQueryFailedException.h * * @brief An exception indicating that a DNS query failed. */ @@ -32,31 +32,31 @@ { OFDNSQuery *_query; of_dns_resolver_error_t _error; } -/*! +/** * @brief The query which could not be performed. */ @property (readonly, nonatomic) OFDNSQuery *query; -/*! +/** * @brief The error from the resolver. */ @property (readonly, nonatomic) of_dns_resolver_error_t error; -/*! +/** * @brief Creates a new, autoreleased DNS query failed exception. * * @param query The query which could not be performed * @param error The error from the resolver * @return A new, autoreleased address translation failed exception */ + (instancetype)exceptionWithQuery: (OFDNSQuery *)query error: (of_dns_resolver_error_t)error; -/*! +/** * @brief Initializes an already allocated DNS query failed exception. * * @param query The query which could not be performed * @param error The error from the resolver * @return An initialized address translation failed exception