summaryrefslogtreecommitdiff
path: root/src/origexception.h
blob: ca59e7f8e656b286b2dfeae31a5dacd0856d4ce4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
 *  OrigException.h
 *
 *  Class that wraps around an exception that was thrown by PHP code,
 *  and that could - but not necessarily has to - be caught by C++
 *
 *  @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
 *  @copyright 2013 Copernica BV
 */

/**
 *  Set up namespace
 */
namespace Php {

/**
 *  Class definition
 */
class OrigException : public Value, public Exception
{
private:    
    /**
     *  Has the exception been restored by the C++ code so that it can be dealt by PHP?
     *  @var    boolean
     */
    bool _restored;
    
public:
    /**
     *  Constructor
     *  @param  zval
     */
    OrigException(struct _zval_struct *zval);
    
    /**
     *  Copy constructor
     *  @param  exception
     */
    OrigException(const OrigException &exception);
    
    /**
     *  Move constructor
     *  @param  exception
     */
    OrigException(OrigException &&exception);
    
    /**
     *  Destructor
     */
    virtual ~OrigException() throw();
    
    /**
     *  Restore the exception - because the exception was not handled by C++ code
     *  @internal
     */
    void restore();
};

/**
 *  End of namespace
 */
}