CSLA.NET
5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
InvalidQueryExpression.cs
Go to the documentation of this file.
1
//-----------------------------------------------------------------------
2
// <copyright file="InvalidQueryExpression.cs" company="Marimer LLC">
3
// Copyright (c) Marimer LLC. All rights reserved.
4
// Website: https://cslanet.com
5
// </copyright>
6
// <summary>no summary</summary>
7
//-----------------------------------------------------------------------
8
using
System;
9
using
Csla
.
Properties
;
10
11
namespace
Csla.Core
12
{
13
class
InvalidQueryException
: System.Exception
14
{
15
private
string
message;
16
17
public
InvalidQueryException
(
string
message)
18
{
19
this.message = message +
" "
;
20
}
21
22
public
override
string
Message
23
{
24
get
25
{
26
return
Resources
.
ClientQueryIsInvalid
+ message;
27
}
28
}
29
}
30
}
Csla.Core.InvalidQueryException
Definition:
InvalidQueryExpression.cs:14
Csla.Core.InvalidQueryException.Message
override string Message
Definition:
InvalidQueryExpression.cs:23
Csla.Core.InvalidQueryException.InvalidQueryException
InvalidQueryException(string message)
Definition:
InvalidQueryExpression.cs:17
Csla.Properties.Resources
A strongly-typed resource class, for looking up localized strings, etc.
Definition:
Resources.Designer.cs:25
Csla.Properties.Resources.ClientQueryIsInvalid
static string ClientQueryIsInvalid
Looks up a localized string similar to The client query is invalid:.
Definition:
Resources.Designer.cs:291
Csla.Core
Definition:
AddedNewEventArgs.cs:11
Csla.Properties
Definition:
Resources.Designer.cs:11
Csla
Definition:
Csla.AspNetCore.Shared/ApplicationContextManager.cs:16
Generated by
1.9.2