eonil
eonil

Reputation: 85985

Does Poco have its own additional exception class or patterns?

Poco is designed as a foundational framework. Does it have any own additional exception class or pattern which is expected overall framework?

Upvotes: 1

Views: 617

Answers (1)

Alex
Alex

Reputation: 5320

Poco has it's own exception hierarchy inheriting from std::exception, with Poco::Exception at the top. See Error Handling and Debugging for details.

Upvotes: 1

Related Questions