errors.py 312 B

12345678910
  1. # Ultralytics YOLO 🚀, AGPL-3.0 license
  2. from ultralytics.utils import emojis
  3. class HUBModelError(Exception):
  4. def __init__(self, message='Model not found. Please check model URL and try again.'):
  5. """Create an exception for when a model is not found."""
  6. super().__init__(emojis(message))