/*
* Copyright (c) 2008-2022 Jonathan Schleifer <js@nil.im>
*
* All rights reserved.
*
* This file is part of ObjFW. It may be distributed under the terms of the
* Q Public License 1.0, which can be found in the file LICENSE.QPL included in
* the packaging of this file.
*
* Alternatively, it may be distributed under the terms of the GNU General
* Public License, either version 2 or 3, which can be found in the file
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#import "OFException.h"
OF_ASSUME_NONNULL_BEGIN
@class OFXMLElement;
/**
* @class OFUnboundNamespaceException \
* OFUnboundNamespaceException.h ObjFW/OFUnboundNamespaceException.h
*
* @brief An exception indicating an attempt to use an unbound namespace.
*/
@interface OFUnboundNamespaceException: OFException
{
OFString *_namespace;
OFXMLElement *_element;
}
/**
* @brief The unbound namespace.
*/
#ifndef __cplusplus
@property (readonly, nonatomic) OFString *namespace;
#else
@property (readonly, nonatomic, getter=namespace) OFString *nameSpace;
#endif
/**
* @brief The element in which the namespace was not bound.
*/
@property (readonly, nonatomic) OFXMLElement *element;
/**
* @brief Creates a new, autoreleased unbound namespace exception.
*
* @param nameSpace The namespace which is unbound
* @param element The element in which the namespace was not bound
* @return A new, autoreleased unbound namespace exception
*/
+ (instancetype)exceptionWithNamespace: (OFString *)nameSpace
element: (OFXMLElement *)element;
+ (instancetype)exception OF_UNAVAILABLE;
/**
* @brief Initializes an already allocated unbound namespace exception.
*
* @param nameSpace The namespace which is unbound
* @param element The element in which the namespace was not bound
* @return An initialized unbound namespace exception
*/
- (instancetype)initWithNamespace: (OFString *)nameSpace
element: (OFXMLElement *)element
OF_DESIGNATED_INITIALIZER;
- (instancetype)init OF_UNAVAILABLE;
@end
OF_ASSUME_NONNULL_END