Ignore:
Timestamp:
Jul 24, 2008, 12:03:11 AM (16 years ago)
Author:
dai
Message:

#183への対応。コンストラクタ呼び出し時にThisを指定しないようにした。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/ablib/src/Classes/System/Threading/Exception.ab

    r499 r566  
    66Public'constructor
    77    Sub AbandonedMutexException()
    8         This.SystemException("", Nothing)
     8        SystemException("", Nothing)
    99    End Sub
    1010    Sub AbandonedMutexException(message As String)
    11         This.SystemException(message, Nothing)
     11        SystemException(message, Nothing)
    1212    End Sub
    1313    Sub AbandonedMutexException(message As String, innerException As Exception)
    14         This.SystemException(message, innerException)
     14        SystemException(message, innerException)
    1515    End Sub
    1616
     
    2121Public'constructor
    2222    Sub SemaphoreFullException()
    23         This.SystemException("Too many semaphore countors.", Nothing)
     23        SystemException("Too many semaphore countors.", Nothing)
    2424        This.HResult = ERROR_TOO_MANY_SEMAPHORES
    2525    End Sub
    2626    Sub SemaphoreFullException(message As String)
    27         This.SystemException(message, Nothing)
     27        SystemException(message, Nothing)
    2828        This.HResult = ERROR_TOO_MANY_SEMAPHORES
    2929    End Sub
    3030    Sub SemaphoreFullException(message As String, innerException As Exception)
    31         This.SystemException(message, innerException)
     31        SystemException(message, innerException)
    3232        This.HResult = ERROR_TOO_MANY_SEMAPHORES
    3333    End Sub
     
    3838Public'constructor
    3939    Sub SynchronizationLockException()
    40         This.SystemException("", Nothing)
     40        SystemException("", Nothing)
    4141    End Sub
    4242    Sub SynchronizationLockException(message As String)
    43         This.SystemException(message, Nothing)
     43        SystemException(message, Nothing)
    4444    End Sub
    4545    Sub SynchronizationLockException(message As String, innerException As Exception)
    46         This.SystemException(message, innerException)
     46        SystemException(message, innerException)
    4747    End Sub
    4848End Class
     
    5252Public'constructor
    5353    Sub ThreadAbortException()
    54         This.SystemException("The thread was discontinued.", Nothing)
     54        SystemException("The thread was discontinued.", Nothing)
    5555    End Sub
    5656    Sub ThreadAbortException(message As String)
    57         This.SystemException(message, Nothing)
     57        SystemException(message, Nothing)
    5858    End Sub
    5959    Sub ThreadAbortException(message As String, innerException As Exception)
    60         This.SystemException(message, innerException)
     60        SystemException(message, innerException)
    6161    End Sub
    6262End Class
     
    6666Public'constructor
    6767    Sub ThreadInterruptedException()
    68         This.SystemException("The thread was Interrupted.", Nothing)
     68        SystemException("The thread was Interrupted.", Nothing)
    6969    End Sub
    7070    Sub ThreadInterruptedException(message As String)
    71         This.SystemException(message, Nothing)
     71        SystemException(message, Nothing)
    7272    End Sub
    7373    Sub ThreadInterruptedException(message As String, innerException As Exception)
    74         This.SystemException(message, innerException)
     74        SystemException(message, innerException)
    7575    End Sub
    7676End Class
     
    8080Public'constructor
    8181    Sub ThreadStartException()
    82         This.SystemException("The thread cannot be begun.", Nothing)
     82        SystemException("The thread cannot be begun.", Nothing)
    8383    End Sub
    8484    Sub ThreadStartException(message As String)
    85         This.SystemException(message, Nothing)
     85        SystemException(message, Nothing)
    8686    End Sub
    8787    Sub ThreadStartException(message As String, innerException As Exception)
    88         This.SystemException(message, innerException)
     88        SystemException(message, innerException)
    8989    End Sub
    9090End Class
     
    9494Public'constructor
    9595    Sub WaitHandleCannotBeOpenedException()
    96         This.SystemException("The wait handle can not be opened.", Nothing)
     96        SystemException("The wait handle can not be opened.", Nothing)
    9797    End Sub
    9898    Sub WaitHandleCannotBeOpenedException(message As String)
    99         This.SystemException(message, Nothing)
     99        SystemException(message, Nothing)
    100100    End Sub
    101101    Sub WaitHandleCannotBeOpenedException(message As String, innerException As Exception)
    102         This.SystemException(message, innerException)
     102        SystemException(message, innerException)
    103103    End Sub
    104104End Class
Note: See TracChangeset for help on using the changeset viewer.