Class SchemaParseException

Indicates a problem that has occurred when parsing a ISchema.

Inheritance
System.Object
SchemaParseException
Namespace: PushTechnology.ClientInterface.Data.Record.Schema
Assembly: Diffusion.Client.dll
Syntax
public sealed class SchemaParseException : Exception
Remarks

Implemented in Version 6.0.

Constructors

SchemaParseException()

Creates a new SchemaParseException.

Declaration
public SchemaParseException()

SchemaParseException(String)

Creates a new SchemaParseException.

Declaration
public SchemaParseException(string message)
Parameters
Type Name Description
System.String message

The error message.

SchemaParseException(String, Exception)

Creates a new SchemaParseException.

Declaration
public SchemaParseException(string message, Exception baseException)
Parameters
Type Name Description
System.String message

The error message.

Exception baseException

The inner exception.

Back to top