Files
adas-core/adas-core.Domain/Exceptions/AdasException.cs
T
2026-06-26 10:29:23 +02:00

6 lines
335 B
C#

namespace adas_core.Domain.Exceptions;
/// <summary>
/// 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.
/// </summary>
public class AdasException(string message) : Exception($"ADAS Exception: {message}");