@@ -22,11 +22,11 @@ * @brief An exception indicating that the protocol specified by the URL is not * supported. */ @interface OFUnsupportedProtocolException: OFException { - OFURL *URL; + OFURL *_URL; } #ifdef OF_HAVE_PROPERTIES @property (readonly, retain, nonatomic) OFURL *URL; #endif @@ -33,28 +33,28 @@ /*! * @brief Creates a new, autoreleased unsupported protocol exception. * * @param class_ The class of the object which caused the exception - * @param url The URL whose protocol is unsupported + * @param URL The URL whose protocol is unsupported * @return A new, autoreleased unsupported protocol exception */ + (instancetype)exceptionWithClass: (Class)class_ - URL: (OFURL*)url; + URL: (OFURL*)URL; /*! * @brief Initializes an already allocated unsupported protocol exception * * @param class_ The class of the object which caused the exception - * @param url The URL whose protocol is unsupported + * @param URL The URL whose protocol is unsupported * @return An initialized unsupported protocol exception */ - initWithClass: (Class)class_ - URL: (OFURL*)url; + URL: (OFURL*)URL; /*! * @brief Returns the URL whose protocol is unsupported. * * @return The URL whose protocol is unsupported */ - (OFURL*)URL; @end