namespace adas_core.Domain.Exceptions; /// /// Represents an exception that is thrown when an error occurs within the ADAS (Advanced Driver Assistance Systems) module, providing a prefixed message for easier identification. /// public class AdasException(string message) : Exception($"ADAS Exception: {message}");