Exemplo n.º 1
0
 public PXNotEnoughRightsException(PXCacheRights rightsMissing)
     : base(ErrorMessages.NotEnoughRights, rightsMissing.ToString())
 {
     this.rightsMissing = rightsMissing;
 }
Exemplo n.º 2
0
 public PXNotEnoughRightsException(PXCacheRights rightsMissing, string message)
     : base(message)
 {
     this.rightsMissing = rightsMissing;
 }
Exemplo n.º 3
0
 public PXCacheRightsPrioritized(bool prioritized, PXCacheRights rights)
 {
     Prioritized = prioritized;
     Rights      = rights;
 }
Exemplo n.º 4
0
		public PXNotEnoughRightsException(PXCacheRights rightsMissing, string message)
			: base(message)
		{
			this.rightsMissing = rightsMissing;
		}
Exemplo n.º 5
0
		public PXNotEnoughRightsException(PXCacheRights rightsMissing)
			: base(ErrorMessages.NotEnoughRights, rightsMissing.ToString())
		{
			this.rightsMissing = rightsMissing;
		}
Exemplo n.º 6
0
		public PXCacheRightsPrioritized(bool prioritized, PXCacheRights rights)
		{
			Prioritized = prioritized;
			Rights = rights;
		}