db/proxy: make the base class of LibmpdclientError public
If the base class is not accessible, the "catching" the base class won't work. This caused the fatal error: terminate called after throwing an instance of 'LibmpdclientError'
This commit is contained in:
@@ -46,7 +46,7 @@
|
||||
#include <string>
|
||||
#include <list>
|
||||
|
||||
class LibmpdclientError final : std::runtime_error {
|
||||
class LibmpdclientError final : public std::runtime_error {
|
||||
enum mpd_error code;
|
||||
|
||||
public:
|
||||
|
Reference in New Issue
Block a user