7 lines
225 B
Python
7 lines
225 B
Python
class ReadOnlyError(Exception):
|
|
"""Raised when a write operation (INSERT/UPDATE/DELETE) is attempted."""
|
|
|
|
|
|
class UnsupportedQueryError(Exception):
|
|
"""Raised when a query uses unsupported features (JOIN, SELECT *)."""
|