Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Core/3.2/Authorization/PermissionException.cs @ 2065

Last change on this file since 2065 was 2065, checked in by mbecirov, 15 years ago

#586: Added authorization components.

File size: 474 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.ServiceModel;
6
7namespace HeuristicLab.Hive.Server.Core {
8  public class PermissionException : FaultException {
9    public PermissionException()
10      : base("Current user has insufficent rights for this action!") {
11    }
12
13    public PermissionException(string msg)
14      : base("Current user has insufficent rights for this action: " + msg) {
15    }
16  }
17}
Note: See TracBrowser for help on using the repository browser.