Statistiques
| Révision:

xamarin / SicpaXamDevice / trunk / Sicpa.Xam.Device.Forms / Exceptions / AgridentException.cs @ 5

Historique | Voir | Annoter | Télécharger (505 octets)

1 5 jfbompa
using System;
2
using System.Collections.Generic;
3
using System.Text;
4
5
namespace Sicpa.Xam.Device.Forms.Exceptions
6
{
7
8
    public class AgridentExecption : Exception
9
    {
10
        /// <summary>
11
        /// Exceptions liées au lecteur Agrident
12
        /// </summary>
13
        public AgridentExecption() { }
14
        /// <summary>
15
        /// Exceptions liées au lecteur Agrident
16
        /// </summary>
17
        public AgridentExecption(string message)
18
        : base(message) { }
19
    }
20
}