25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- using System;
-
- namespace Lebai.SDK.Exceptions
- {
- public class RobotException : Exception
- {
- public bool CanRetry { get; }
-
- public RobotException(string message, bool canRetry = false) : base(message)
- {
- CanRetry = canRetry;
- }
- }
- }
|