начало реализации исключений

This commit is contained in:
2025-02-06 12:48:18 +03:00
parent 0b455b8dd8
commit f734126932
8 changed files with 20 additions and 7 deletions
+1
View File
@@ -14,6 +14,7 @@ public class Printer : IPrinter
public async Task<TransmittedSharedObject<IPage>> Print(string text, CancellationToken cancellationToken = default)
{
throw new Exception("The method or operation is not implemented.");
return new Page {Text = text};
}
}