Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.2 KiB

  1. // Exception.cpp -- Smart Card Utility Exception class definition
  2. // (c) Copyright Schlumberger Technology Corp., unpublished work, created
  3. // 1999. This computer program includes Confidential, Proprietary
  4. // Information and is a Trade Secret of Schlumberger Technology Corp. All
  5. // use, disclosure, and/or reproduction is prohibited unless authorized
  6. // in writing. All Rights Reserved.
  7. #include "scuExc.h"
  8. using namespace scu;
  9. /////////////////////////// LOCAL/HELPER /////////////////////////////////
  10. /////////////////////////// PUBLIC /////////////////////////////////
  11. // Types
  12. // C'tors/D'tors
  13. scu::Exception::~Exception() throw()
  14. {}
  15. // Operators
  16. // Operations
  17. // Access
  18. char const *
  19. scu::Exception::Description() const
  20. {
  21. return 0;
  22. }
  23. Exception::FacilityCode
  24. scu::Exception::Facility() const throw()
  25. {
  26. return m_fc;
  27. }
  28. // Predicates
  29. // Static Variables
  30. /////////////////////////// PROTECTED /////////////////////////////////
  31. // C'tors/D'tors
  32. scu::Exception::Exception(FacilityCode fc) throw()
  33. : m_fc(fc)
  34. {}
  35. // Operators
  36. // Operations
  37. // Access
  38. // Predicates
  39. // Static Variables
  40. /////////////////////////// PRIVATE /////////////////////////////////
  41. // C'tors/D'tors
  42. // Operators
  43. // Operations
  44. // Access
  45. // Predicates
  46. // Static Variables