7 lines
369 B
C#
7 lines
369 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>
|
|
/// <!-- aidoc:v1 sig=cb76f52 -->
|
|
public class AdasException(string message) : Exception($"ADAS Exception: {message}"); |