CefVersionMismatchException.cs 305 B

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