Error that indicates that the URL is not valid. More...
Inherits BPrivate::Network::BError.
Public Member Functions | |
BInvalidUrl (BString origin, BUrl url) | |
BInvalidUrl (const char *origin, BUrl url) | |
Create a new error invalid URL error. | |
virtual const char * | Message () const noexcept override |
Access the string representation of the message. | |
const BUrl & | Url () const |
The URL that caused the issue. | |
Public Member Functions inherited from BPrivate::Network::BError | |
BError (BError &&error) noexcept | |
Move constructor. | |
BError (BString origin) | |
Constructor that sets the origin. | |
BError (const BError &error) | |
Copy constructor. | |
BError (const char *origin) | |
Constructor that sets the origin. | |
virtual | ~BError () noexcept |
Standard destructor. | |
virtual BString | DebugMessage () const |
Retrieve a debug message that contains all info in this error. | |
virtual const char * | Message () const noexcept=0 |
Access the string representation of the message. | |
BError & | operator= (BError &&error) noexcept |
Move assignment operator. | |
BError & | operator= (const BError &error) |
Copy assignment operator. | |
virtual const char * | Origin () const noexcept |
Access the string representation of the origin of the error. | |
size_t | WriteToOutput (BDataIO *output) const |
Write the error description to an output. | |
void | WriteToStream (std::ostream &stream) const |
Write the error description to an output stream. | |
Error that indicates that the URL is not valid.
This error is raised as an exception when the caller tries to pass a BUrl object that does not contain a valid URL.
BPrivate::Network::BInvalidUrl::BInvalidUrl | ( | const char * | origin, |
BUrl | url | ||
) |
Create a new error invalid URL error.
origin | A string representing where this error occured. It is advised to initialize it to __PRETTY_FUNCTION__ by default. |
url | The URL object that did not contain a valid URL. |
Create a new error invalid URL error.
origin | A string representing where this error occured. It is advised to initialize it to __PRETTY_FUNCTION__ by default. |
url | The URL object that did not contain a valid URL. |
|
overridevirtualnoexcept |
Access the string representation of the message.
Implements BPrivate::Network::BError.
const BUrl & BPrivate::Network::BInvalidUrl::Url | ( | ) | const |
The URL that caused the issue.