~ubuntu-branches/ubuntu/utopic/ginkgocadx/utopic-proposed

« back to all changes in this revision

Viewing changes to src/cadxcore/api/icontroladorautenticacion.h

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2012-05-19 11:37:14 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20120519113714-13jwx5svm7d4fnsq
Tags: 2.12.0.4889-1
* New upstream version
* debian/control: Standards-Version: 3.9.3 (no changes needed)
* debhelper 9 (control+compat)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 *  
3
 
 *  $Id: icontroladorautenticacion.h 3066 2010-12-21 10:10:14Z carlos $
 
3
 *  $Id: icontroladorautenticacion.h 4687 2012-02-10 13:35:07Z carlos $
4
4
 *  Ginkgo CADx Project
5
5
 *
6
6
 *  Copyright 2008-10 MetaEmotion S.L. All rights reserved.
26
26
namespace GSEC {
27
27
        namespace Auth {
28
28
 
29
 
                class AuthException : public std::exception {
 
29
                class AuthException : GNC::GCS::IException {
30
30
                public:
31
 
                        AuthException(const std::string& msg, const std::string& componente="GSEC/Auth", bool fatal = true) throw()
 
31
                        AuthException(const std::string& msg, const std::string& componente="GSEC/Auth", bool fatal = true) : GNC::GCS::IException(msg, componente, fatal)
32
32
                        {
33
 
                                this->cause = msg;
34
 
                                this->component = componente;
35
 
                                this->fatal = fatal;
36
33
                        }
37
34
                        ~AuthException() throw()
38
35
                        {