Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive 3.3/HeuristicLab.Hive.Server.Core/3.2/Authorization/PermissionException.cs @ 4060

Last change on this file since 4060 was 4060, checked in by cneumuel, 14 years ago

created folders, copied Hive.Server.Core and Hive.Client.Core (#1091)

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.