mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-21 21:03:23 +08:00
16 lines
342 B
C++
16 lines
342 B
C++
#pragma once
|
|
|
|
#include <exception>
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
class DbgException : public std::exception
|
|
{
|
|
public:
|
|
|
|
DbgException( const char* desc ) :
|
|
std::exception( desc )
|
|
{}
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|