Created
June 23, 2023 18:57
-
-
Save an01f01/9f5168949cf7ca6ae5f5f8a15b56fe41 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ TErrorTodo } | |
constructor TErrorTodo.Create(ErrorMessage: string); | |
begin | |
self.ErrorMessage := ErrorMessage; | |
end; | |
function TErrorTodo.GetSelf: TObject; | |
begin | |
Result := Self; | |
end; | |
function TErrorTodo.ToString: string; | |
begin | |
Result := 'Todo Error: ' + ErrorMessage; | |
end; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment