14 lines
291 B
Python
14 lines
291 B
Python
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
|
|
|
from bu4.evaluation.constructs.evoid import EVoid
|
|
|
|
__all__ = ('EException',)
|
|
|
|
|
|
class EException(EVoid):
|
|
def __init__(self, name: bytes):
|
|
self.name = name
|
|
|
|
def __str__(self):
|
|
return f'«{self.name.decode()}»'
|