Changeset 566
- Timestamp:
- Jul 24, 2008, 12:03:11 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/ablib/src/Classes/System/Threading/Exception.ab
r499 r566 6 6 Public'constructor 7 7 Sub AbandonedMutexException() 8 This.SystemException("", Nothing)8 SystemException("", Nothing) 9 9 End Sub 10 10 Sub AbandonedMutexException(message As String) 11 This.SystemException(message, Nothing)11 SystemException(message, Nothing) 12 12 End Sub 13 13 Sub AbandonedMutexException(message As String, innerException As Exception) 14 This.SystemException(message, innerException)14 SystemException(message, innerException) 15 15 End Sub 16 16 … … 21 21 Public'constructor 22 22 Sub SemaphoreFullException() 23 This.SystemException("Too many semaphore countors.", Nothing)23 SystemException("Too many semaphore countors.", Nothing) 24 24 This.HResult = ERROR_TOO_MANY_SEMAPHORES 25 25 End Sub 26 26 Sub SemaphoreFullException(message As String) 27 This.SystemException(message, Nothing)27 SystemException(message, Nothing) 28 28 This.HResult = ERROR_TOO_MANY_SEMAPHORES 29 29 End Sub 30 30 Sub SemaphoreFullException(message As String, innerException As Exception) 31 This.SystemException(message, innerException)31 SystemException(message, innerException) 32 32 This.HResult = ERROR_TOO_MANY_SEMAPHORES 33 33 End Sub … … 38 38 Public'constructor 39 39 Sub SynchronizationLockException() 40 This.SystemException("", Nothing)40 SystemException("", Nothing) 41 41 End Sub 42 42 Sub SynchronizationLockException(message As String) 43 This.SystemException(message, Nothing)43 SystemException(message, Nothing) 44 44 End Sub 45 45 Sub SynchronizationLockException(message As String, innerException As Exception) 46 This.SystemException(message, innerException)46 SystemException(message, innerException) 47 47 End Sub 48 48 End Class … … 52 52 Public'constructor 53 53 Sub ThreadAbortException() 54 This.SystemException("The thread was discontinued.", Nothing)54 SystemException("The thread was discontinued.", Nothing) 55 55 End Sub 56 56 Sub ThreadAbortException(message As String) 57 This.SystemException(message, Nothing)57 SystemException(message, Nothing) 58 58 End Sub 59 59 Sub ThreadAbortException(message As String, innerException As Exception) 60 This.SystemException(message, innerException)60 SystemException(message, innerException) 61 61 End Sub 62 62 End Class … … 66 66 Public'constructor 67 67 Sub ThreadInterruptedException() 68 This.SystemException("The thread was Interrupted.", Nothing)68 SystemException("The thread was Interrupted.", Nothing) 69 69 End Sub 70 70 Sub ThreadInterruptedException(message As String) 71 This.SystemException(message, Nothing)71 SystemException(message, Nothing) 72 72 End Sub 73 73 Sub ThreadInterruptedException(message As String, innerException As Exception) 74 This.SystemException(message, innerException)74 SystemException(message, innerException) 75 75 End Sub 76 76 End Class … … 80 80 Public'constructor 81 81 Sub ThreadStartException() 82 This.SystemException("The thread cannot be begun.", Nothing)82 SystemException("The thread cannot be begun.", Nothing) 83 83 End Sub 84 84 Sub ThreadStartException(message As String) 85 This.SystemException(message, Nothing)85 SystemException(message, Nothing) 86 86 End Sub 87 87 Sub ThreadStartException(message As String, innerException As Exception) 88 This.SystemException(message, innerException)88 SystemException(message, innerException) 89 89 End Sub 90 90 End Class … … 94 94 Public'constructor 95 95 Sub WaitHandleCannotBeOpenedException() 96 This.SystemException("The wait handle can not be opened.", Nothing)96 SystemException("The wait handle can not be opened.", Nothing) 97 97 End Sub 98 98 Sub WaitHandleCannotBeOpenedException(message As String) 99 This.SystemException(message, Nothing)99 SystemException(message, Nothing) 100 100 End Sub 101 101 Sub WaitHandleCannotBeOpenedException(message As String, innerException As Exception) 102 This.SystemException(message, innerException)102 SystemException(message, innerException) 103 103 End Sub 104 104 End Class
Note:
See TracChangeset
for help on using the changeset viewer.