MCPcopy Create free account
hub / github.com/apache/fory / FrontendError

Class FrontendError

compiler/fory_compiler/frontend/base.py:27–35  ·  view source on GitHub ↗

Error during frontend parsing or translation.

Source from the content-addressed store, hash-verified

25
26
27class FrontendError(Exception):
28 """Error during frontend parsing or translation."""
29
30 def __init__(self, message: str, file: str, line: int, column: int):
31 super().__init__(f"{file}:{line}:{column}: {message}")
32 self.message = message
33 self.file = file
34 self.line = line
35 self.column = column
36
37
38class BaseFrontend(ABC):

Callers 3

parseMethod · 0.90
parseMethod · 0.90
parseMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected