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//-----------------------------------------------------------------------
8using System;
9using Csla.Properties;
10
11namespace 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}
A strongly-typed resource class, for looking up localized strings, etc.
static string ClientQueryIsInvalid
Looks up a localized string similar to The client query is invalid:.