You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

NotOkStatusException.cs 337 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Tensorflow.Exceptions
  5. {
  6. public class NotOkStatusException : TensorflowException
  7. {
  8. public NotOkStatusException() : base()
  9. {
  10. }
  11. public NotOkStatusException(string message) : base(message)
  12. {
  13. }
  14. }
  15. }