Changeset 4755 for trunk/nuxleus/Source/Xameleon/Function
- Timestamp:
- 07/23/08 18:31:38 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/nuxleus/Source/Xameleon/Function/AWSSimpleDBFunctions.cs
r4464 r4755 36 36 catch (SdbException ex) 37 37 { 38 handleException(ex);38 HandleException(ex); 39 39 } 40 40 } … … 49 49 catch (SdbException ex) 50 50 { 51 handleException(ex);51 HandleException(ex); 52 52 } 53 53 } … … 62 62 catch (SdbException ex) 63 63 { 64 handleException(ex);64 HandleException(ex); 65 65 } 66 66 } … … 76 76 catch (SdbException ex) 77 77 { 78 handleException(ex);78 HandleException(ex); 79 79 } 80 80 } … … 90 90 catch (SdbException ex) 91 91 { 92 handleException(ex);92 HandleException(ex); 93 93 } 94 94 } … … 102 102 catch (SdbException ex) 103 103 { 104 handleException(ex);104 HandleException(ex); 105 105 } 106 106 } … … 113 113 catch (SdbException ex) 114 114 { 115 handleException(ex);115 HandleException(ex); 116 116 } 117 117 } … … 124 124 catch (SdbException ex) 125 125 { 126 handleException(ex);126 HandleException(ex); 127 127 throw; 128 128 } … … 137 137 catch (SdbException ex) 138 138 { 139 handleException(ex);139 HandleException(ex); 140 140 return null; 141 141 } … … 149 149 catch (SdbException ex) 150 150 { 151 handleException(ex);151 HandleException(ex); 152 152 return null; 153 153 } … … 162 162 catch (SdbException ex) 163 163 { 164 handleException(ex);164 HandleException(ex); 165 165 throw; 166 166 } … … 174 174 catch (SdbException ex) 175 175 { 176 handleException(ex);176 HandleException(ex); 177 177 throw; 178 178 } … … 191 191 return myDomain.Query("[\"attName\" = \"attValue\"]"); 192 192 } 193 public static void handleException (SdbException ex)193 public static void HandleException (SdbException ex) 194 194 { 195 195 System.Console.WriteLine("Failure: {0}: {1} ({2})", ex.ErrorCode, ex.Message, ex.RequestId);
