// Copyright © 2012 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp
{
///
/// Javascript exception
///
public class JavascriptException
{
///
/// Message
///
public string Message { get; set; }
///
/// Stack trace in javascript frames
///
public JavascriptStackFrame[] StackTrace { get; set; }
}
}