layout: default title: JavascriptError parent: Core Classes —

dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Exceptions

JavascriptError Class

A JavaScript error

public class JavascriptError :
System.IEquatable<dymaptic.GeoBlazor.Core.Exceptions.JavascriptError>

Inheritance System.Object 🡒 JavascriptError

Implements System.IEquatable<JavascriptError>

Constructors

JavascriptError(string, string, string) Constructor

A JavaScript error

public JavascriptError(string? Message, string? Name, string? Stack=null);

Parameters

Message System.String

The message of the error.

Name System.String

The name of the error.

Stack System.String

The stack trace of the error.

Properties

JavascriptError.Message Property

The message of the error.

public string? Message { get; set; }

Property Value

System.String

JavascriptError.Name Property

The name of the error.

public string? Name { get; set; }

Property Value

System.String

JavascriptError.Stack Property

The stack trace of the error.

public string? Stack { get; set; }

Property Value

System.String