Ejemplo n.º 1
0
 private PowwaReturnValue(PowwaStatus status, T value, string message)
 {
     this.Status  = status;
     this.Value   = value;
     this.Message = message;
 }
Ejemplo n.º 2
0
 protected PowwaException(PowwaStatus status, string message) : base(message)
 {
     this.Status = status;
 }
Ejemplo n.º 3
0
		protected PowwaException(PowwaStatus status, string message) : base(message)
		{
			this.Status = status;
		}