2023-04-14 15:17:41 +02:00

10 lines
252 B
Python

# Ultralytics YOLO 🚀, AGPL-3.0 license
from ultralytics.yolo.utils import emojis
class HUBModelError(Exception):
def __init__(self, message='Model not found. Please check model URL and try again.'):
super().__init__(emojis(message))