6 lines
335 B
C#
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}"); |