1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #region Copyright
- #endregion
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Text;
- using System.IO;
- namespace Dynastream.Fit
- {
-
-
-
- public class FitException : Exception
- {
- #region Constructors
- public FitException()
- : base()
- {
- }
- public FitException(string message)
- : base(message)
- {
- }
- public FitException(string str, Exception e)
- : base(str, e)
- {
- }
- #endregion
- }
- }
|