~ubuntu-branches/ubuntu/lucid/suphp/lucid

« back to all changes in this revision

Viewing changes to src/SystemException.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:
37
37
     */
38
38
    class SystemException : public Exception {
39
39
    private:
40
 
        std::string getName() const;
 
40
        std::string getName() const;
41
41
    public:
42
 
        /**
43
 
         * Constructor without message.
44
 
         */
45
 
        SystemException(std::string file, int line);
 
42
        /**
 
43
         * Constructor without message.
 
44
         */
 
45
        SystemException(std::string file, int line);
46
46
 
47
 
        /**
48
 
         * Constructor with message.
49
 
         */
50
 
        SystemException(std::string message, std::string file, int line);
51
 
        
52
 
        /**
53
 
         * Constructor without message but with cause.
54
 
         */
55
 
        SystemException(Exception& cause, std::string file, int line);
56
 
        
57
 
        /**
58
 
         * Constructor with message and cause.
59
 
         */
60
 
        SystemException(std::string message, Exception& cause, std::string file, int line);
61
 
        
 
47
        /**
 
48
         * Constructor with message.
 
49
         */
 
50
        SystemException(std::string message, std::string file, int line);
 
51
        
 
52
        /**
 
53
         * Constructor without message but with cause.
 
54
         */
 
55
        SystemException(Exception& cause, std::string file, int line);
 
56
        
 
57
        /**
 
58
         * Constructor with message and cause.
 
59
         */
 
60
        SystemException(std::string message, Exception& cause, std::string file, int line);
 
61
        
62
62
    };
63
63
};
64
64