bbbbbbenchh

This commit is contained in:
2026-01-18 01:59:55 +03:00
parent 1648a8206a
commit 69e871a639
16 changed files with 188 additions and 221 deletions
+14
View File
@@ -0,0 +1,14 @@
class BenchmarkNotFound(Exception):
def __init__(self, benchmark_name: str):
self.benchmark_name = benchmark_name
def __str__(self):
return f"Benchmark with name '{self.benchmark_name}' not found"
class BenchmarksNotFound(Exception):
def __init__(self, type_: str):
self.type_ = type_
def __str__(self):
return f"Benchmarks with type '{self.type_}' not found"