CefRuntimeException.cs 272 B

1234567891011121314
  1. namespace Xilium.CefGlue
  2. {
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. public class CefRuntimeException : Exception
  7. {
  8. public CefRuntimeException(string message)
  9. : base(message)
  10. {
  11. }
  12. }
  13. }