Advertisement
Guest User

MatrixError.cs

a guest
Jan 26th, 2020
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.57 KB | None | 0 0
  1. // Encog Neural Network and Bot Library for DotNet v0.5
  2. // http://www.heatonresearch.com/encog/
  3. // http://code.google.com/p/encog-cs/
  4. //
  5. // Copyright 2008, Heaton Research Inc., and individual contributors.
  6. // See the copyright.txt in the distribution for a full listing of
  7. // individual contributors.
  8. //
  9. // This is free software; you can redistribute it and/or modify it
  10. // under the terms of the GNU Lesser General Public License as
  11. // published by the Free Software Foundation; either version 2.1 of
  12. // the License, or (at your option) any later version.
  13. //
  14. // This software is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. // Lesser General Public License for more details.
  18. //
  19. // You should have received a copy of the GNU Lesser General Public
  20. // License along with this software; if not, write to the Free
  21. // Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  22. // 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  23.  
  24. using System;
  25. using System.Collections.Generic;
  26. using System.Linq;
  27. using System.Text;
  28.  
  29. namespace Encog.Matrix
  30. {
  31.     /// <summary>
  32.     /// Thrown when a matrix error occured.
  33.     /// </summary>
  34.     class MatrixError: System.Exception
  35.     {
  36.         /// <summary>
  37.         /// Constructor for a simple message exception.
  38.         /// </summary>
  39.         /// <param name="str">The message for the exception.</param>
  40.         public MatrixError(String str): base(str)
  41.         {
  42.         }
  43.     }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement