Sha256: 58d704471a3e353e35978c5575d2046d2f2418960ee8dcf3c0f2abc5e3474952

Contents?: true

Size: 1 KB

Versions: 108

Compression:

Stored size: 1 KB

Contents

// YAML error class. http://stackoverflow.com/questions/8458984
//
'use strict';

function YAMLException(reason, mark) {
  // Super constructor
  Error.call(this);

  this.name = 'YAMLException';
  this.reason = reason;
  this.mark = mark;
  this.message = (this.reason || '(unknown reason)') + (this.mark ? ' ' + this.mark.toString() : '');

  // Include stack trace in error object
  if (Error.captureStackTrace) {
    // Chrome and NodeJS
    Error.captureStackTrace(this, this.constructor);
  } else {
    // FF, IE 10+ and Safari 6+. Fallback for others
    this.stack = (new Error()).stack || '';
  }
}


// Inherit from Error
YAMLException.prototype = Object.create(Error.prototype);
YAMLException.prototype.constructor = YAMLException;


YAMLException.prototype.toString = function toString(compact) {
  var result = this.name + ': ';

  result += this.reason || '(unknown reason)';

  if (!compact && this.mark) {
    result += ' ' + this.mark.toString();
  }

  return result;
};


module.exports = YAMLException;

Version data entries

108 entries across 99 versions & 15 rubygems

Version Path
govuk_publishing_components-17.4.0 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-17.3.0 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-17.2.0 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-17.1.1 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-17.1.0 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-17.0.0 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-16.29.0 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-16.28.0 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-16.27.1 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-16.27.0 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-16.26.0 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-16.25.0 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-16.24.0 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-16.23.0 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-16.22.0 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-16.21.0 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-16.20.1 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-16.20.0 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-16.19.0 node_modules/js-yaml/lib/js-yaml/exception.js
govuk_publishing_components-16.18.0 node_modules/js-yaml/lib/js-yaml/exception.js