RealmException.cs 146 B

1234567891011
  1. using System;
  2. namespace Robot
  3. {
  4. public class RealmException: Exception
  5. {
  6. public RealmException(string message): base(message)
  7. {
  8. }
  9. }
  10. }