~ubuntu-branches/ubuntu/oneiric/suphp/oneiric

« back to all changes in this revision

Viewing changes to src/PointerException.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Emmanuel Lacour
  • Date: 2009-08-03 15:15:38 UTC
  • mfrom: (8.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090803151538-pv7yhe6w1mqmceas
Tags: 0.7.1-1
* New upstream release (closes: #528379, #520182) 
* debian/NEWS: add information about AddHandler -> AddType change introduced
  in 0.6.2-2 (closes: #517805)
* debian/conf/suphp.conf, debian/patches/01_debian.dpatch: switch from
  application/x-httpd-php to application/x-httpd-suphp to allow
  simultaneous use of mod_suphp and mod_php (closes: #519005, #514725)

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
     */
39
39
    class PointerException : public Exception {
40
40
    private:
41
 
        std::string getName() const;
 
41
        std::string getName() const;
42
42
    public:
43
 
        /**
44
 
         * Constructor without message.
45
 
         */
46
 
        PointerException(std::string file, int line);
 
43
        /**
 
44
         * Constructor without message.
 
45
         */
 
46
        PointerException(std::string file, int line);
47
47
 
48
 
        /**
49
 
         * Constructor with message.
50
 
         */
51
 
        PointerException(std::string message, std::string file, int line);
52
 
        
53
 
        /**
54
 
         * Constructor without message but with cause.
55
 
         */
56
 
        PointerException(Exception& cause, std::string file, int line);
57
 
        
58
 
        /**
59
 
         * Constructor with message and cause.
60
 
         */
61
 
        PointerException(std::string message, Exception& cause, std::string file, int line);
62
 
        
 
48
        /**
 
49
         * Constructor with message.
 
50
         */
 
51
        PointerException(std::string message, std::string file, int line);
 
52
        
 
53
        /**
 
54
         * Constructor without message but with cause.
 
55
         */
 
56
        PointerException(Exception& cause, std::string file, int line);
 
57
        
 
58
        /**
 
59
         * Constructor with message and cause.
 
60
         */
 
61
        PointerException(std::string message, Exception& cause, std::string file, int line);
 
62
        
63
63
    };
64
64
};
65
65