diff --git a/Code/src/Index.ts b/Code/src/Index.ts index 2bbe5fa..f2e69ad 100644 --- a/Code/src/Index.ts +++ b/Code/src/Index.ts @@ -10,6 +10,7 @@ export * from './NotFoundException'; export * from './NotImplementedException'; export * from './NotPermittedException'; export * from './NotSupportedException'; +export * from './ObjectDisposedException'; export * from './OperationAbortedException'; export * from './TimeoutException'; export * from './ValidationException'; diff --git a/Code/src/ObjectDisposedException.ts b/Code/src/ObjectDisposedException.ts index e69de29..4e93c22 100644 --- a/Code/src/ObjectDisposedException.ts +++ b/Code/src/ObjectDisposedException.ts @@ -0,0 +1,27 @@ +import {InvalidOperationException} from './InvalidOperationException'; + +/** + * Exception that will be thrown if an operation is invalid because the object is already disposed. + */ +export class ObjectDisposedException extends InvalidOperationException { + private readonly _objectName: symbol; + + public constructor(objectName: string, cause?: Error); + public constructor(objectName: string, message?: string, cause?: Error); + public constructor(objectName: string, messageOrCause?: string | Error, cause?: Error) { + super( + typeof messageOrCause === 'string' ? + messageOrCause : + 'Cannot access a disposed object.', + typeof messageOrCause === 'string' || cause ? + cause : + messageOrCause + ); + this._objectName = Symbol('Object name'); + this.data[this._objectName] = objectName; + } + + public get objectName(): string { + return this.data[this._objectName]; + } +} diff --git a/Docs/assets/search.js b/Docs/assets/search.js index f04b2bb..44b92f2 100644 --- a/Docs/assets/search.js +++ b/Docs/assets/search.js @@ -1 +1 @@ -window.searchData = {"kinds":{"128":"Class","512":"Constructor","1024":"Property","2048":"Method","262144":"Accessor"},"rows":[{"id":0,"kind":128,"name":"AggregateException","url":"classes/AggregateException.html","classes":"tsd-kind-class"},{"id":1,"kind":2048,"name":"isError","url":"classes/AggregateException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"AggregateException"},{"id":2,"kind":2048,"name":"fromObject","url":"classes/AggregateException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"AggregateException"},{"id":3,"kind":512,"name":"constructor","url":"classes/AggregateException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"AggregateException"},{"id":4,"kind":1024,"name":"innerExceptions","url":"classes/AggregateException.html#innerExceptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"AggregateException"},{"id":5,"kind":2048,"name":"toArray","url":"classes/AggregateException.html#toArray","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AggregateException"},{"id":6,"kind":262144,"name":"stack","url":"classes/AggregateException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"AggregateException"},{"id":7,"kind":2048,"name":"[iterator]","url":"classes/AggregateException.html#_iterator_","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AggregateException"},{"id":8,"kind":1024,"name":"cause","url":"classes/AggregateException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"AggregateException"},{"id":9,"kind":1024,"name":"data","url":"classes/AggregateException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"AggregateException"},{"id":10,"kind":2048,"name":"toString","url":"classes/AggregateException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AggregateException"},{"id":11,"kind":262144,"name":"innerException","url":"classes/AggregateException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AggregateException"},{"id":12,"kind":128,"name":"ArgumentException","url":"classes/ArgumentException.html","classes":"tsd-kind-class"},{"id":13,"kind":2048,"name":"isError","url":"classes/ArgumentException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ArgumentException"},{"id":14,"kind":2048,"name":"fromObject","url":"classes/ArgumentException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ArgumentException"},{"id":15,"kind":512,"name":"constructor","url":"classes/ArgumentException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ArgumentException"},{"id":16,"kind":262144,"name":"argumentName","url":"classes/ArgumentException.html#argumentName","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ArgumentException"},{"id":17,"kind":1024,"name":"cause","url":"classes/ArgumentException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentException"},{"id":18,"kind":1024,"name":"data","url":"classes/ArgumentException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentException"},{"id":19,"kind":262144,"name":"stack","url":"classes/ArgumentException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentException"},{"id":20,"kind":2048,"name":"toString","url":"classes/ArgumentException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentException"},{"id":21,"kind":262144,"name":"innerException","url":"classes/ArgumentException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentException"},{"id":22,"kind":128,"name":"ArgumentNullException","url":"classes/ArgumentNullException.html","classes":"tsd-kind-class"},{"id":23,"kind":2048,"name":"isError","url":"classes/ArgumentNullException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ArgumentNullException"},{"id":24,"kind":2048,"name":"fromObject","url":"classes/ArgumentNullException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ArgumentNullException"},{"id":25,"kind":512,"name":"constructor","url":"classes/ArgumentNullException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ArgumentNullException"},{"id":26,"kind":262144,"name":"argumentName","url":"classes/ArgumentNullException.html#argumentName","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentNullException"},{"id":27,"kind":1024,"name":"cause","url":"classes/ArgumentNullException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentNullException"},{"id":28,"kind":1024,"name":"data","url":"classes/ArgumentNullException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentNullException"},{"id":29,"kind":262144,"name":"stack","url":"classes/ArgumentNullException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentNullException"},{"id":30,"kind":2048,"name":"toString","url":"classes/ArgumentNullException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentNullException"},{"id":31,"kind":262144,"name":"innerException","url":"classes/ArgumentNullException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentNullException"},{"id":32,"kind":128,"name":"ArgumentOutOfRangeException","url":"classes/ArgumentOutOfRangeException.html","classes":"tsd-kind-class"},{"id":33,"kind":2048,"name":"isError","url":"classes/ArgumentOutOfRangeException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ArgumentOutOfRangeException"},{"id":34,"kind":2048,"name":"fromObject","url":"classes/ArgumentOutOfRangeException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ArgumentOutOfRangeException"},{"id":35,"kind":512,"name":"constructor","url":"classes/ArgumentOutOfRangeException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ArgumentOutOfRangeException"},{"id":36,"kind":262144,"name":"actualValue","url":"classes/ArgumentOutOfRangeException.html#actualValue","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ArgumentOutOfRangeException"},{"id":37,"kind":262144,"name":"argumentName","url":"classes/ArgumentOutOfRangeException.html#argumentName","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentOutOfRangeException"},{"id":38,"kind":1024,"name":"cause","url":"classes/ArgumentOutOfRangeException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentOutOfRangeException"},{"id":39,"kind":1024,"name":"data","url":"classes/ArgumentOutOfRangeException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentOutOfRangeException"},{"id":40,"kind":262144,"name":"stack","url":"classes/ArgumentOutOfRangeException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentOutOfRangeException"},{"id":41,"kind":2048,"name":"toString","url":"classes/ArgumentOutOfRangeException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentOutOfRangeException"},{"id":42,"kind":262144,"name":"innerException","url":"classes/ArgumentOutOfRangeException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentOutOfRangeException"},{"id":43,"kind":128,"name":"Exception","url":"classes/Exception.html","classes":"tsd-kind-class"},{"id":44,"kind":2048,"name":"isError","url":"classes/Exception.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Exception"},{"id":45,"kind":2048,"name":"fromObject","url":"classes/Exception.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Exception"},{"id":46,"kind":512,"name":"constructor","url":"classes/Exception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Exception"},{"id":47,"kind":1024,"name":"cause","url":"classes/Exception.html#cause","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Exception"},{"id":48,"kind":1024,"name":"data","url":"classes/Exception.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Exception"},{"id":49,"kind":262144,"name":"stack","url":"classes/Exception.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Exception"},{"id":50,"kind":2048,"name":"toString","url":"classes/Exception.html#toString","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Exception"},{"id":51,"kind":262144,"name":"innerException","url":"classes/Exception.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Exception"},{"id":52,"kind":128,"name":"ChuckNorrisException","url":"classes/ChuckNorrisException.html","classes":"tsd-kind-class"},{"id":53,"kind":2048,"name":"isError","url":"classes/ChuckNorrisException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ChuckNorrisException"},{"id":54,"kind":2048,"name":"fromObject","url":"classes/ChuckNorrisException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ChuckNorrisException"},{"id":55,"kind":512,"name":"constructor","url":"classes/ChuckNorrisException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ChuckNorrisException"},{"id":56,"kind":262144,"name":"exceptionObject","url":"classes/ChuckNorrisException.html#exceptionObject","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ChuckNorrisException"},{"id":57,"kind":1024,"name":"cause","url":"classes/ChuckNorrisException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ChuckNorrisException"},{"id":58,"kind":1024,"name":"data","url":"classes/ChuckNorrisException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ChuckNorrisException"},{"id":59,"kind":262144,"name":"stack","url":"classes/ChuckNorrisException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ChuckNorrisException"},{"id":60,"kind":2048,"name":"toString","url":"classes/ChuckNorrisException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"ChuckNorrisException"},{"id":61,"kind":262144,"name":"innerException","url":"classes/ChuckNorrisException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ChuckNorrisException"},{"id":62,"kind":128,"name":"InvalidFormatException","url":"classes/InvalidFormatException.html","classes":"tsd-kind-class"},{"id":63,"kind":2048,"name":"isError","url":"classes/InvalidFormatException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"InvalidFormatException"},{"id":64,"kind":2048,"name":"fromObject","url":"classes/InvalidFormatException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"InvalidFormatException"},{"id":65,"kind":512,"name":"constructor","url":"classes/InvalidFormatException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"InvalidFormatException"},{"id":66,"kind":1024,"name":"cause","url":"classes/InvalidFormatException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"InvalidFormatException"},{"id":67,"kind":1024,"name":"data","url":"classes/InvalidFormatException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"InvalidFormatException"},{"id":68,"kind":262144,"name":"stack","url":"classes/InvalidFormatException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"InvalidFormatException"},{"id":69,"kind":2048,"name":"toString","url":"classes/InvalidFormatException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"InvalidFormatException"},{"id":70,"kind":262144,"name":"innerException","url":"classes/InvalidFormatException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"InvalidFormatException"},{"id":71,"kind":128,"name":"InvalidOperationException","url":"classes/InvalidOperationException.html","classes":"tsd-kind-class"},{"id":72,"kind":2048,"name":"isError","url":"classes/InvalidOperationException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"InvalidOperationException"},{"id":73,"kind":2048,"name":"fromObject","url":"classes/InvalidOperationException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"InvalidOperationException"},{"id":74,"kind":512,"name":"constructor","url":"classes/InvalidOperationException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"InvalidOperationException"},{"id":75,"kind":1024,"name":"cause","url":"classes/InvalidOperationException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"InvalidOperationException"},{"id":76,"kind":1024,"name":"data","url":"classes/InvalidOperationException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"InvalidOperationException"},{"id":77,"kind":262144,"name":"stack","url":"classes/InvalidOperationException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"InvalidOperationException"},{"id":78,"kind":2048,"name":"toString","url":"classes/InvalidOperationException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"InvalidOperationException"},{"id":79,"kind":262144,"name":"innerException","url":"classes/InvalidOperationException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"InvalidOperationException"},{"id":80,"kind":128,"name":"IOException","url":"classes/IOException.html","classes":"tsd-kind-class"},{"id":81,"kind":2048,"name":"isError","url":"classes/IOException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"IOException"},{"id":82,"kind":2048,"name":"fromObject","url":"classes/IOException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"IOException"},{"id":83,"kind":512,"name":"constructor","url":"classes/IOException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"IOException"},{"id":84,"kind":1024,"name":"cause","url":"classes/IOException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"IOException"},{"id":85,"kind":1024,"name":"data","url":"classes/IOException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"IOException"},{"id":86,"kind":262144,"name":"stack","url":"classes/IOException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"IOException"},{"id":87,"kind":2048,"name":"toString","url":"classes/IOException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"IOException"},{"id":88,"kind":262144,"name":"innerException","url":"classes/IOException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"IOException"},{"id":89,"kind":128,"name":"NotFoundException","url":"classes/NotFoundException.html","classes":"tsd-kind-class"},{"id":90,"kind":2048,"name":"isError","url":"classes/NotFoundException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"NotFoundException"},{"id":91,"kind":2048,"name":"fromObject","url":"classes/NotFoundException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"NotFoundException"},{"id":92,"kind":512,"name":"constructor","url":"classes/NotFoundException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"NotFoundException"},{"id":93,"kind":1024,"name":"_entityType","url":"classes/NotFoundException.html#_entityType","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NotFoundException"},{"id":94,"kind":262144,"name":"entityType","url":"classes/NotFoundException.html#entityType","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"NotFoundException"},{"id":95,"kind":1024,"name":"cause","url":"classes/NotFoundException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotFoundException"},{"id":96,"kind":1024,"name":"data","url":"classes/NotFoundException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotFoundException"},{"id":97,"kind":262144,"name":"stack","url":"classes/NotFoundException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"NotFoundException"},{"id":98,"kind":2048,"name":"toString","url":"classes/NotFoundException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"NotFoundException"},{"id":99,"kind":262144,"name":"innerException","url":"classes/NotFoundException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"NotFoundException"},{"id":100,"kind":128,"name":"NotImplementedException","url":"classes/NotImplementedException.html","classes":"tsd-kind-class"},{"id":101,"kind":2048,"name":"isError","url":"classes/NotImplementedException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"NotImplementedException"},{"id":102,"kind":2048,"name":"fromObject","url":"classes/NotImplementedException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"NotImplementedException"},{"id":103,"kind":512,"name":"constructor","url":"classes/NotImplementedException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"NotImplementedException"},{"id":104,"kind":1024,"name":"cause","url":"classes/NotImplementedException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotImplementedException"},{"id":105,"kind":1024,"name":"data","url":"classes/NotImplementedException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotImplementedException"},{"id":106,"kind":262144,"name":"stack","url":"classes/NotImplementedException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"NotImplementedException"},{"id":107,"kind":2048,"name":"toString","url":"classes/NotImplementedException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"NotImplementedException"},{"id":108,"kind":262144,"name":"innerException","url":"classes/NotImplementedException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"NotImplementedException"},{"id":109,"kind":128,"name":"NotPermittedException","url":"classes/NotPermittedException.html","classes":"tsd-kind-class"},{"id":110,"kind":2048,"name":"isError","url":"classes/NotPermittedException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"NotPermittedException"},{"id":111,"kind":2048,"name":"fromObject","url":"classes/NotPermittedException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"NotPermittedException"},{"id":112,"kind":512,"name":"constructor","url":"classes/NotPermittedException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"NotPermittedException"},{"id":113,"kind":1024,"name":"cause","url":"classes/NotPermittedException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotPermittedException"},{"id":114,"kind":1024,"name":"data","url":"classes/NotPermittedException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotPermittedException"},{"id":115,"kind":262144,"name":"stack","url":"classes/NotPermittedException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"NotPermittedException"},{"id":116,"kind":2048,"name":"toString","url":"classes/NotPermittedException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"NotPermittedException"},{"id":117,"kind":262144,"name":"innerException","url":"classes/NotPermittedException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"NotPermittedException"},{"id":118,"kind":128,"name":"NotSupportedException","url":"classes/NotSupportedException.html","classes":"tsd-kind-class"},{"id":119,"kind":2048,"name":"isError","url":"classes/NotSupportedException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"NotSupportedException"},{"id":120,"kind":2048,"name":"fromObject","url":"classes/NotSupportedException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"NotSupportedException"},{"id":121,"kind":512,"name":"constructor","url":"classes/NotSupportedException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"NotSupportedException"},{"id":122,"kind":1024,"name":"cause","url":"classes/NotSupportedException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotSupportedException"},{"id":123,"kind":1024,"name":"data","url":"classes/NotSupportedException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotSupportedException"},{"id":124,"kind":262144,"name":"stack","url":"classes/NotSupportedException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"NotSupportedException"},{"id":125,"kind":2048,"name":"toString","url":"classes/NotSupportedException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"NotSupportedException"},{"id":126,"kind":262144,"name":"innerException","url":"classes/NotSupportedException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"NotSupportedException"},{"id":127,"kind":128,"name":"OperationAbortedException","url":"classes/OperationAbortedException.html","classes":"tsd-kind-class"},{"id":128,"kind":2048,"name":"isError","url":"classes/OperationAbortedException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"OperationAbortedException"},{"id":129,"kind":2048,"name":"fromObject","url":"classes/OperationAbortedException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"OperationAbortedException"},{"id":130,"kind":512,"name":"constructor","url":"classes/OperationAbortedException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"OperationAbortedException"},{"id":131,"kind":1024,"name":"cause","url":"classes/OperationAbortedException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"OperationAbortedException"},{"id":132,"kind":1024,"name":"data","url":"classes/OperationAbortedException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"OperationAbortedException"},{"id":133,"kind":262144,"name":"stack","url":"classes/OperationAbortedException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"OperationAbortedException"},{"id":134,"kind":2048,"name":"toString","url":"classes/OperationAbortedException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"OperationAbortedException"},{"id":135,"kind":262144,"name":"innerException","url":"classes/OperationAbortedException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"OperationAbortedException"},{"id":136,"kind":128,"name":"TimeoutException","url":"classes/TimeoutException.html","classes":"tsd-kind-class"},{"id":137,"kind":2048,"name":"isError","url":"classes/TimeoutException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"TimeoutException"},{"id":138,"kind":2048,"name":"fromObject","url":"classes/TimeoutException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"TimeoutException"},{"id":139,"kind":512,"name":"constructor","url":"classes/TimeoutException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"TimeoutException"},{"id":140,"kind":1024,"name":"_timeout","url":"classes/TimeoutException.html#_timeout","classes":"tsd-kind-property tsd-parent-kind-class","parent":"TimeoutException"},{"id":141,"kind":262144,"name":"timeout","url":"classes/TimeoutException.html#timeout","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"TimeoutException"},{"id":142,"kind":1024,"name":"cause","url":"classes/TimeoutException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"TimeoutException"},{"id":143,"kind":1024,"name":"data","url":"classes/TimeoutException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"TimeoutException"},{"id":144,"kind":262144,"name":"stack","url":"classes/TimeoutException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TimeoutException"},{"id":145,"kind":2048,"name":"toString","url":"classes/TimeoutException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TimeoutException"},{"id":146,"kind":262144,"name":"innerException","url":"classes/TimeoutException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TimeoutException"},{"id":147,"kind":128,"name":"ValidationException","url":"classes/ValidationException.html","classes":"tsd-kind-class"},{"id":148,"kind":2048,"name":"isError","url":"classes/ValidationException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ValidationException"},{"id":149,"kind":2048,"name":"fromObject","url":"classes/ValidationException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ValidationException"},{"id":150,"kind":512,"name":"constructor","url":"classes/ValidationException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ValidationException"},{"id":151,"kind":1024,"name":"cause","url":"classes/ValidationException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ValidationException"},{"id":152,"kind":1024,"name":"data","url":"classes/ValidationException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ValidationException"},{"id":153,"kind":262144,"name":"stack","url":"classes/ValidationException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ValidationException"},{"id":154,"kind":2048,"name":"toString","url":"classes/ValidationException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"ValidationException"},{"id":155,"kind":262144,"name":"innerException","url":"classes/ValidationException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ValidationException"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,25.305]],["parent/0",[]],["name/1",[1,22.529]],["parent/1",[0,2.417]],["name/2",[2,22.529]],["parent/2",[0,2.417]],["name/3",[3,22.529]],["parent/3",[0,2.417]],["name/4",[4,46.508]],["parent/4",[0,2.417]],["name/5",[5,46.508]],["parent/5",[0,2.417]],["name/6",[6,22.529]],["parent/6",[0,2.417]],["name/7",[7,46.508]],["parent/7",[0,2.417]],["name/8",[8,22.529]],["parent/8",[0,2.417]],["name/9",[9,22.529]],["parent/9",[0,2.417]],["name/10",[10,22.529]],["parent/10",[0,2.417]],["name/11",[11,22.529]],["parent/11",[0,2.417]],["name/12",[12,27.049]],["parent/12",[]],["name/13",[1,22.529]],["parent/13",[12,2.584]],["name/14",[2,22.529]],["parent/14",[12,2.584]],["name/15",[3,22.529]],["parent/15",[12,2.584]],["name/16",[13,38.035]],["parent/16",[12,2.584]],["name/17",[8,22.529]],["parent/17",[12,2.584]],["name/18",[9,22.529]],["parent/18",[12,2.584]],["name/19",[6,22.529]],["parent/19",[12,2.584]],["name/20",[10,22.529]],["parent/20",[12,2.584]],["name/21",[11,22.529]],["parent/21",[12,2.584]],["name/22",[14,27.049]],["parent/22",[]],["name/23",[1,22.529]],["parent/23",[14,2.584]],["name/24",[2,22.529]],["parent/24",[14,2.584]],["name/25",[3,22.529]],["parent/25",[14,2.584]],["name/26",[13,38.035]],["parent/26",[14,2.584]],["name/27",[8,22.529]],["parent/27",[14,2.584]],["name/28",[9,22.529]],["parent/28",[14,2.584]],["name/29",[6,22.529]],["parent/29",[14,2.584]],["name/30",[10,22.529]],["parent/30",[14,2.584]],["name/31",[11,22.529]],["parent/31",[14,2.584]],["name/32",[15,26.139]],["parent/32",[]],["name/33",[1,22.529]],["parent/33",[15,2.497]],["name/34",[2,22.529]],["parent/34",[15,2.497]],["name/35",[3,22.529]],["parent/35",[15,2.497]],["name/36",[16,46.508]],["parent/36",[15,2.497]],["name/37",[13,38.035]],["parent/37",[15,2.497]],["name/38",[8,22.529]],["parent/38",[15,2.497]],["name/39",[9,22.529]],["parent/39",[15,2.497]],["name/40",[6,22.529]],["parent/40",[15,2.497]],["name/41",[10,22.529]],["parent/41",[15,2.497]],["name/42",[11,22.529]],["parent/42",[15,2.497]],["name/43",[17,28.05]],["parent/43",[]],["name/44",[1,22.529]],["parent/44",[17,2.68]],["name/45",[2,22.529]],["parent/45",[17,2.68]],["name/46",[3,22.529]],["parent/46",[17,2.68]],["name/47",[8,22.529]],["parent/47",[17,2.68]],["name/48",[9,22.529]],["parent/48",[17,2.68]],["name/49",[6,22.529]],["parent/49",[17,2.68]],["name/50",[10,22.529]],["parent/50",[17,2.68]],["name/51",[11,22.529]],["parent/51",[17,2.68]],["name/52",[18,27.049]],["parent/52",[]],["name/53",[1,22.529]],["parent/53",[18,2.584]],["name/54",[2,22.529]],["parent/54",[18,2.584]],["name/55",[3,22.529]],["parent/55",[18,2.584]],["name/56",[19,46.508]],["parent/56",[18,2.584]],["name/57",[8,22.529]],["parent/57",[18,2.584]],["name/58",[9,22.529]],["parent/58",[18,2.584]],["name/59",[6,22.529]],["parent/59",[18,2.584]],["name/60",[10,22.529]],["parent/60",[18,2.584]],["name/61",[11,22.529]],["parent/61",[18,2.584]],["name/62",[20,28.05]],["parent/62",[]],["name/63",[1,22.529]],["parent/63",[20,2.68]],["name/64",[2,22.529]],["parent/64",[20,2.68]],["name/65",[3,22.529]],["parent/65",[20,2.68]],["name/66",[8,22.529]],["parent/66",[20,2.68]],["name/67",[9,22.529]],["parent/67",[20,2.68]],["name/68",[6,22.529]],["parent/68",[20,2.68]],["name/69",[10,22.529]],["parent/69",[20,2.68]],["name/70",[11,22.529]],["parent/70",[20,2.68]],["name/71",[21,28.05]],["parent/71",[]],["name/72",[1,22.529]],["parent/72",[21,2.68]],["name/73",[2,22.529]],["parent/73",[21,2.68]],["name/74",[3,22.529]],["parent/74",[21,2.68]],["name/75",[8,22.529]],["parent/75",[21,2.68]],["name/76",[9,22.529]],["parent/76",[21,2.68]],["name/77",[6,22.529]],["parent/77",[21,2.68]],["name/78",[10,22.529]],["parent/78",[21,2.68]],["name/79",[11,22.529]],["parent/79",[21,2.68]],["name/80",[22,28.05]],["parent/80",[]],["name/81",[1,22.529]],["parent/81",[22,2.68]],["name/82",[2,22.529]],["parent/82",[22,2.68]],["name/83",[3,22.529]],["parent/83",[22,2.68]],["name/84",[8,22.529]],["parent/84",[22,2.68]],["name/85",[9,22.529]],["parent/85",[22,2.68]],["name/86",[6,22.529]],["parent/86",[22,2.68]],["name/87",[10,22.529]],["parent/87",[22,2.68]],["name/88",[11,22.529]],["parent/88",[22,2.68]],["name/89",[23,26.139]],["parent/89",[]],["name/90",[1,22.529]],["parent/90",[23,2.497]],["name/91",[2,22.529]],["parent/91",[23,2.497]],["name/92",[3,22.529]],["parent/92",[23,2.497]],["name/93",[24,46.508]],["parent/93",[23,2.497]],["name/94",[25,46.508]],["parent/94",[23,2.497]],["name/95",[8,22.529]],["parent/95",[23,2.497]],["name/96",[9,22.529]],["parent/96",[23,2.497]],["name/97",[6,22.529]],["parent/97",[23,2.497]],["name/98",[10,22.529]],["parent/98",[23,2.497]],["name/99",[11,22.529]],["parent/99",[23,2.497]],["name/100",[26,28.05]],["parent/100",[]],["name/101",[1,22.529]],["parent/101",[26,2.68]],["name/102",[2,22.529]],["parent/102",[26,2.68]],["name/103",[3,22.529]],["parent/103",[26,2.68]],["name/104",[8,22.529]],["parent/104",[26,2.68]],["name/105",[9,22.529]],["parent/105",[26,2.68]],["name/106",[6,22.529]],["parent/106",[26,2.68]],["name/107",[10,22.529]],["parent/107",[26,2.68]],["name/108",[11,22.529]],["parent/108",[26,2.68]],["name/109",[27,28.05]],["parent/109",[]],["name/110",[1,22.529]],["parent/110",[27,2.68]],["name/111",[2,22.529]],["parent/111",[27,2.68]],["name/112",[3,22.529]],["parent/112",[27,2.68]],["name/113",[8,22.529]],["parent/113",[27,2.68]],["name/114",[9,22.529]],["parent/114",[27,2.68]],["name/115",[6,22.529]],["parent/115",[27,2.68]],["name/116",[10,22.529]],["parent/116",[27,2.68]],["name/117",[11,22.529]],["parent/117",[27,2.68]],["name/118",[28,28.05]],["parent/118",[]],["name/119",[1,22.529]],["parent/119",[28,2.68]],["name/120",[2,22.529]],["parent/120",[28,2.68]],["name/121",[3,22.529]],["parent/121",[28,2.68]],["name/122",[8,22.529]],["parent/122",[28,2.68]],["name/123",[9,22.529]],["parent/123",[28,2.68]],["name/124",[6,22.529]],["parent/124",[28,2.68]],["name/125",[10,22.529]],["parent/125",[28,2.68]],["name/126",[11,22.529]],["parent/126",[28,2.68]],["name/127",[29,28.05]],["parent/127",[]],["name/128",[1,22.529]],["parent/128",[29,2.68]],["name/129",[2,22.529]],["parent/129",[29,2.68]],["name/130",[3,22.529]],["parent/130",[29,2.68]],["name/131",[8,22.529]],["parent/131",[29,2.68]],["name/132",[9,22.529]],["parent/132",[29,2.68]],["name/133",[6,22.529]],["parent/133",[29,2.68]],["name/134",[10,22.529]],["parent/134",[29,2.68]],["name/135",[11,22.529]],["parent/135",[29,2.68]],["name/136",[30,26.139]],["parent/136",[]],["name/137",[1,22.529]],["parent/137",[30,2.497]],["name/138",[2,22.529]],["parent/138",[30,2.497]],["name/139",[3,22.529]],["parent/139",[30,2.497]],["name/140",[31,46.508]],["parent/140",[30,2.497]],["name/141",[32,46.508]],["parent/141",[30,2.497]],["name/142",[8,22.529]],["parent/142",[30,2.497]],["name/143",[9,22.529]],["parent/143",[30,2.497]],["name/144",[6,22.529]],["parent/144",[30,2.497]],["name/145",[10,22.529]],["parent/145",[30,2.497]],["name/146",[11,22.529]],["parent/146",[30,2.497]],["name/147",[33,28.05]],["parent/147",[]],["name/148",[1,22.529]],["parent/148",[33,2.68]],["name/149",[2,22.529]],["parent/149",[33,2.68]],["name/150",[3,22.529]],["parent/150",[33,2.68]],["name/151",[8,22.529]],["parent/151",[33,2.68]],["name/152",[9,22.529]],["parent/152",[33,2.68]],["name/153",[6,22.529]],["parent/153",[33,2.68]],["name/154",[10,22.529]],["parent/154",[33,2.68]],["name/155",[11,22.529]],["parent/155",[33,2.68]]],"invertedIndex":[["_entitytype",{"_index":24,"name":{"93":{}},"parent":{}}],["_timeout",{"_index":31,"name":{"140":{}},"parent":{}}],["actualvalue",{"_index":16,"name":{"36":{}},"parent":{}}],["aggregateexception",{"_index":0,"name":{"0":{}},"parent":{"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{}}}],["argumentexception",{"_index":12,"name":{"12":{}},"parent":{"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{}}}],["argumentname",{"_index":13,"name":{"16":{},"26":{},"37":{}},"parent":{}}],["argumentnullexception",{"_index":14,"name":{"22":{}},"parent":{"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{}}}],["argumentoutofrangeexception",{"_index":15,"name":{"32":{}},"parent":{"33":{},"34":{},"35":{},"36":{},"37":{},"38":{},"39":{},"40":{},"41":{},"42":{}}}],["cause",{"_index":8,"name":{"8":{},"17":{},"27":{},"38":{},"47":{},"57":{},"66":{},"75":{},"84":{},"95":{},"104":{},"113":{},"122":{},"131":{},"142":{},"151":{}},"parent":{}}],["chucknorrisexception",{"_index":18,"name":{"52":{}},"parent":{"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{}}}],["constructor",{"_index":3,"name":{"3":{},"15":{},"25":{},"35":{},"46":{},"55":{},"65":{},"74":{},"83":{},"92":{},"103":{},"112":{},"121":{},"130":{},"139":{},"150":{}},"parent":{}}],["data",{"_index":9,"name":{"9":{},"18":{},"28":{},"39":{},"48":{},"58":{},"67":{},"76":{},"85":{},"96":{},"105":{},"114":{},"123":{},"132":{},"143":{},"152":{}},"parent":{}}],["entitytype",{"_index":25,"name":{"94":{}},"parent":{}}],["exception",{"_index":17,"name":{"43":{}},"parent":{"44":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{}}}],["exceptionobject",{"_index":19,"name":{"56":{}},"parent":{}}],["fromobject",{"_index":2,"name":{"2":{},"14":{},"24":{},"34":{},"45":{},"54":{},"64":{},"73":{},"82":{},"91":{},"102":{},"111":{},"120":{},"129":{},"138":{},"149":{}},"parent":{}}],["innerexception",{"_index":11,"name":{"11":{},"21":{},"31":{},"42":{},"51":{},"61":{},"70":{},"79":{},"88":{},"99":{},"108":{},"117":{},"126":{},"135":{},"146":{},"155":{}},"parent":{}}],["innerexceptions",{"_index":4,"name":{"4":{}},"parent":{}}],["invalidformatexception",{"_index":20,"name":{"62":{}},"parent":{"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{}}}],["invalidoperationexception",{"_index":21,"name":{"71":{}},"parent":{"72":{},"73":{},"74":{},"75":{},"76":{},"77":{},"78":{},"79":{}}}],["ioexception",{"_index":22,"name":{"80":{}},"parent":{"81":{},"82":{},"83":{},"84":{},"85":{},"86":{},"87":{},"88":{}}}],["iserror",{"_index":1,"name":{"1":{},"13":{},"23":{},"33":{},"44":{},"53":{},"63":{},"72":{},"81":{},"90":{},"101":{},"110":{},"119":{},"128":{},"137":{},"148":{}},"parent":{}}],["iterator",{"_index":7,"name":{"7":{}},"parent":{}}],["notfoundexception",{"_index":23,"name":{"89":{}},"parent":{"90":{},"91":{},"92":{},"93":{},"94":{},"95":{},"96":{},"97":{},"98":{},"99":{}}}],["notimplementedexception",{"_index":26,"name":{"100":{}},"parent":{"101":{},"102":{},"103":{},"104":{},"105":{},"106":{},"107":{},"108":{}}}],["notpermittedexception",{"_index":27,"name":{"109":{}},"parent":{"110":{},"111":{},"112":{},"113":{},"114":{},"115":{},"116":{},"117":{}}}],["notsupportedexception",{"_index":28,"name":{"118":{}},"parent":{"119":{},"120":{},"121":{},"122":{},"123":{},"124":{},"125":{},"126":{}}}],["operationabortedexception",{"_index":29,"name":{"127":{}},"parent":{"128":{},"129":{},"130":{},"131":{},"132":{},"133":{},"134":{},"135":{}}}],["stack",{"_index":6,"name":{"6":{},"19":{},"29":{},"40":{},"49":{},"59":{},"68":{},"77":{},"86":{},"97":{},"106":{},"115":{},"124":{},"133":{},"144":{},"153":{}},"parent":{}}],["timeout",{"_index":32,"name":{"141":{}},"parent":{}}],["timeoutexception",{"_index":30,"name":{"136":{}},"parent":{"137":{},"138":{},"139":{},"140":{},"141":{},"142":{},"143":{},"144":{},"145":{},"146":{}}}],["toarray",{"_index":5,"name":{"5":{}},"parent":{}}],["tostring",{"_index":10,"name":{"10":{},"20":{},"30":{},"41":{},"50":{},"60":{},"69":{},"78":{},"87":{},"98":{},"107":{},"116":{},"125":{},"134":{},"145":{},"154":{}},"parent":{}}],["validationexception",{"_index":33,"name":{"147":{}},"parent":{"148":{},"149":{},"150":{},"151":{},"152":{},"153":{},"154":{},"155":{}}}]],"pipeline":[]}} \ No newline at end of file +window.searchData = {"kinds":{"128":"Class","512":"Constructor","1024":"Property","2048":"Method","262144":"Accessor"},"rows":[{"id":0,"kind":128,"name":"AggregateException","url":"classes/AggregateException.html","classes":"tsd-kind-class"},{"id":1,"kind":2048,"name":"isError","url":"classes/AggregateException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"AggregateException"},{"id":2,"kind":2048,"name":"fromObject","url":"classes/AggregateException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"AggregateException"},{"id":3,"kind":512,"name":"constructor","url":"classes/AggregateException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"AggregateException"},{"id":4,"kind":1024,"name":"innerExceptions","url":"classes/AggregateException.html#innerExceptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"AggregateException"},{"id":5,"kind":2048,"name":"toArray","url":"classes/AggregateException.html#toArray","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AggregateException"},{"id":6,"kind":262144,"name":"stack","url":"classes/AggregateException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"AggregateException"},{"id":7,"kind":2048,"name":"[iterator]","url":"classes/AggregateException.html#_iterator_","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AggregateException"},{"id":8,"kind":1024,"name":"cause","url":"classes/AggregateException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"AggregateException"},{"id":9,"kind":1024,"name":"data","url":"classes/AggregateException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"AggregateException"},{"id":10,"kind":2048,"name":"toString","url":"classes/AggregateException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AggregateException"},{"id":11,"kind":262144,"name":"innerException","url":"classes/AggregateException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AggregateException"},{"id":12,"kind":128,"name":"ArgumentException","url":"classes/ArgumentException.html","classes":"tsd-kind-class"},{"id":13,"kind":2048,"name":"isError","url":"classes/ArgumentException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ArgumentException"},{"id":14,"kind":2048,"name":"fromObject","url":"classes/ArgumentException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ArgumentException"},{"id":15,"kind":512,"name":"constructor","url":"classes/ArgumentException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ArgumentException"},{"id":16,"kind":262144,"name":"argumentName","url":"classes/ArgumentException.html#argumentName","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ArgumentException"},{"id":17,"kind":1024,"name":"cause","url":"classes/ArgumentException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentException"},{"id":18,"kind":1024,"name":"data","url":"classes/ArgumentException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentException"},{"id":19,"kind":262144,"name":"stack","url":"classes/ArgumentException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentException"},{"id":20,"kind":2048,"name":"toString","url":"classes/ArgumentException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentException"},{"id":21,"kind":262144,"name":"innerException","url":"classes/ArgumentException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentException"},{"id":22,"kind":128,"name":"ArgumentNullException","url":"classes/ArgumentNullException.html","classes":"tsd-kind-class"},{"id":23,"kind":2048,"name":"isError","url":"classes/ArgumentNullException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ArgumentNullException"},{"id":24,"kind":2048,"name":"fromObject","url":"classes/ArgumentNullException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ArgumentNullException"},{"id":25,"kind":512,"name":"constructor","url":"classes/ArgumentNullException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ArgumentNullException"},{"id":26,"kind":262144,"name":"argumentName","url":"classes/ArgumentNullException.html#argumentName","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentNullException"},{"id":27,"kind":1024,"name":"cause","url":"classes/ArgumentNullException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentNullException"},{"id":28,"kind":1024,"name":"data","url":"classes/ArgumentNullException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentNullException"},{"id":29,"kind":262144,"name":"stack","url":"classes/ArgumentNullException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentNullException"},{"id":30,"kind":2048,"name":"toString","url":"classes/ArgumentNullException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentNullException"},{"id":31,"kind":262144,"name":"innerException","url":"classes/ArgumentNullException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentNullException"},{"id":32,"kind":128,"name":"ArgumentOutOfRangeException","url":"classes/ArgumentOutOfRangeException.html","classes":"tsd-kind-class"},{"id":33,"kind":2048,"name":"isError","url":"classes/ArgumentOutOfRangeException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ArgumentOutOfRangeException"},{"id":34,"kind":2048,"name":"fromObject","url":"classes/ArgumentOutOfRangeException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ArgumentOutOfRangeException"},{"id":35,"kind":512,"name":"constructor","url":"classes/ArgumentOutOfRangeException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ArgumentOutOfRangeException"},{"id":36,"kind":262144,"name":"actualValue","url":"classes/ArgumentOutOfRangeException.html#actualValue","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ArgumentOutOfRangeException"},{"id":37,"kind":262144,"name":"argumentName","url":"classes/ArgumentOutOfRangeException.html#argumentName","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentOutOfRangeException"},{"id":38,"kind":1024,"name":"cause","url":"classes/ArgumentOutOfRangeException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentOutOfRangeException"},{"id":39,"kind":1024,"name":"data","url":"classes/ArgumentOutOfRangeException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentOutOfRangeException"},{"id":40,"kind":262144,"name":"stack","url":"classes/ArgumentOutOfRangeException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentOutOfRangeException"},{"id":41,"kind":2048,"name":"toString","url":"classes/ArgumentOutOfRangeException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentOutOfRangeException"},{"id":42,"kind":262144,"name":"innerException","url":"classes/ArgumentOutOfRangeException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ArgumentOutOfRangeException"},{"id":43,"kind":128,"name":"Exception","url":"classes/Exception.html","classes":"tsd-kind-class"},{"id":44,"kind":2048,"name":"isError","url":"classes/Exception.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Exception"},{"id":45,"kind":2048,"name":"fromObject","url":"classes/Exception.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Exception"},{"id":46,"kind":512,"name":"constructor","url":"classes/Exception.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Exception"},{"id":47,"kind":1024,"name":"cause","url":"classes/Exception.html#cause","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Exception"},{"id":48,"kind":1024,"name":"data","url":"classes/Exception.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Exception"},{"id":49,"kind":262144,"name":"stack","url":"classes/Exception.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Exception"},{"id":50,"kind":2048,"name":"toString","url":"classes/Exception.html#toString","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Exception"},{"id":51,"kind":262144,"name":"innerException","url":"classes/Exception.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Exception"},{"id":52,"kind":128,"name":"ChuckNorrisException","url":"classes/ChuckNorrisException.html","classes":"tsd-kind-class"},{"id":53,"kind":2048,"name":"isError","url":"classes/ChuckNorrisException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ChuckNorrisException"},{"id":54,"kind":2048,"name":"fromObject","url":"classes/ChuckNorrisException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ChuckNorrisException"},{"id":55,"kind":512,"name":"constructor","url":"classes/ChuckNorrisException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ChuckNorrisException"},{"id":56,"kind":262144,"name":"exceptionObject","url":"classes/ChuckNorrisException.html#exceptionObject","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ChuckNorrisException"},{"id":57,"kind":1024,"name":"cause","url":"classes/ChuckNorrisException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ChuckNorrisException"},{"id":58,"kind":1024,"name":"data","url":"classes/ChuckNorrisException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ChuckNorrisException"},{"id":59,"kind":262144,"name":"stack","url":"classes/ChuckNorrisException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ChuckNorrisException"},{"id":60,"kind":2048,"name":"toString","url":"classes/ChuckNorrisException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"ChuckNorrisException"},{"id":61,"kind":262144,"name":"innerException","url":"classes/ChuckNorrisException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ChuckNorrisException"},{"id":62,"kind":128,"name":"InvalidFormatException","url":"classes/InvalidFormatException.html","classes":"tsd-kind-class"},{"id":63,"kind":2048,"name":"isError","url":"classes/InvalidFormatException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"InvalidFormatException"},{"id":64,"kind":2048,"name":"fromObject","url":"classes/InvalidFormatException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"InvalidFormatException"},{"id":65,"kind":512,"name":"constructor","url":"classes/InvalidFormatException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"InvalidFormatException"},{"id":66,"kind":1024,"name":"cause","url":"classes/InvalidFormatException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"InvalidFormatException"},{"id":67,"kind":1024,"name":"data","url":"classes/InvalidFormatException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"InvalidFormatException"},{"id":68,"kind":262144,"name":"stack","url":"classes/InvalidFormatException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"InvalidFormatException"},{"id":69,"kind":2048,"name":"toString","url":"classes/InvalidFormatException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"InvalidFormatException"},{"id":70,"kind":262144,"name":"innerException","url":"classes/InvalidFormatException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"InvalidFormatException"},{"id":71,"kind":128,"name":"InvalidOperationException","url":"classes/InvalidOperationException.html","classes":"tsd-kind-class"},{"id":72,"kind":2048,"name":"isError","url":"classes/InvalidOperationException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"InvalidOperationException"},{"id":73,"kind":2048,"name":"fromObject","url":"classes/InvalidOperationException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"InvalidOperationException"},{"id":74,"kind":512,"name":"constructor","url":"classes/InvalidOperationException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"InvalidOperationException"},{"id":75,"kind":1024,"name":"cause","url":"classes/InvalidOperationException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"InvalidOperationException"},{"id":76,"kind":1024,"name":"data","url":"classes/InvalidOperationException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"InvalidOperationException"},{"id":77,"kind":262144,"name":"stack","url":"classes/InvalidOperationException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"InvalidOperationException"},{"id":78,"kind":2048,"name":"toString","url":"classes/InvalidOperationException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"InvalidOperationException"},{"id":79,"kind":262144,"name":"innerException","url":"classes/InvalidOperationException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"InvalidOperationException"},{"id":80,"kind":128,"name":"IOException","url":"classes/IOException.html","classes":"tsd-kind-class"},{"id":81,"kind":2048,"name":"isError","url":"classes/IOException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"IOException"},{"id":82,"kind":2048,"name":"fromObject","url":"classes/IOException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"IOException"},{"id":83,"kind":512,"name":"constructor","url":"classes/IOException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"IOException"},{"id":84,"kind":1024,"name":"cause","url":"classes/IOException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"IOException"},{"id":85,"kind":1024,"name":"data","url":"classes/IOException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"IOException"},{"id":86,"kind":262144,"name":"stack","url":"classes/IOException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"IOException"},{"id":87,"kind":2048,"name":"toString","url":"classes/IOException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"IOException"},{"id":88,"kind":262144,"name":"innerException","url":"classes/IOException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"IOException"},{"id":89,"kind":128,"name":"NotFoundException","url":"classes/NotFoundException.html","classes":"tsd-kind-class"},{"id":90,"kind":2048,"name":"isError","url":"classes/NotFoundException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"NotFoundException"},{"id":91,"kind":2048,"name":"fromObject","url":"classes/NotFoundException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"NotFoundException"},{"id":92,"kind":512,"name":"constructor","url":"classes/NotFoundException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"NotFoundException"},{"id":93,"kind":1024,"name":"_entityType","url":"classes/NotFoundException.html#_entityType","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NotFoundException"},{"id":94,"kind":262144,"name":"entityType","url":"classes/NotFoundException.html#entityType","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"NotFoundException"},{"id":95,"kind":1024,"name":"cause","url":"classes/NotFoundException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotFoundException"},{"id":96,"kind":1024,"name":"data","url":"classes/NotFoundException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotFoundException"},{"id":97,"kind":262144,"name":"stack","url":"classes/NotFoundException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"NotFoundException"},{"id":98,"kind":2048,"name":"toString","url":"classes/NotFoundException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"NotFoundException"},{"id":99,"kind":262144,"name":"innerException","url":"classes/NotFoundException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"NotFoundException"},{"id":100,"kind":128,"name":"NotImplementedException","url":"classes/NotImplementedException.html","classes":"tsd-kind-class"},{"id":101,"kind":2048,"name":"isError","url":"classes/NotImplementedException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"NotImplementedException"},{"id":102,"kind":2048,"name":"fromObject","url":"classes/NotImplementedException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"NotImplementedException"},{"id":103,"kind":512,"name":"constructor","url":"classes/NotImplementedException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"NotImplementedException"},{"id":104,"kind":1024,"name":"cause","url":"classes/NotImplementedException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotImplementedException"},{"id":105,"kind":1024,"name":"data","url":"classes/NotImplementedException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotImplementedException"},{"id":106,"kind":262144,"name":"stack","url":"classes/NotImplementedException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"NotImplementedException"},{"id":107,"kind":2048,"name":"toString","url":"classes/NotImplementedException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"NotImplementedException"},{"id":108,"kind":262144,"name":"innerException","url":"classes/NotImplementedException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"NotImplementedException"},{"id":109,"kind":128,"name":"NotPermittedException","url":"classes/NotPermittedException.html","classes":"tsd-kind-class"},{"id":110,"kind":2048,"name":"isError","url":"classes/NotPermittedException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"NotPermittedException"},{"id":111,"kind":2048,"name":"fromObject","url":"classes/NotPermittedException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"NotPermittedException"},{"id":112,"kind":512,"name":"constructor","url":"classes/NotPermittedException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"NotPermittedException"},{"id":113,"kind":1024,"name":"cause","url":"classes/NotPermittedException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotPermittedException"},{"id":114,"kind":1024,"name":"data","url":"classes/NotPermittedException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotPermittedException"},{"id":115,"kind":262144,"name":"stack","url":"classes/NotPermittedException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"NotPermittedException"},{"id":116,"kind":2048,"name":"toString","url":"classes/NotPermittedException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"NotPermittedException"},{"id":117,"kind":262144,"name":"innerException","url":"classes/NotPermittedException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"NotPermittedException"},{"id":118,"kind":128,"name":"NotSupportedException","url":"classes/NotSupportedException.html","classes":"tsd-kind-class"},{"id":119,"kind":2048,"name":"isError","url":"classes/NotSupportedException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"NotSupportedException"},{"id":120,"kind":2048,"name":"fromObject","url":"classes/NotSupportedException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"NotSupportedException"},{"id":121,"kind":512,"name":"constructor","url":"classes/NotSupportedException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"NotSupportedException"},{"id":122,"kind":1024,"name":"cause","url":"classes/NotSupportedException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotSupportedException"},{"id":123,"kind":1024,"name":"data","url":"classes/NotSupportedException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"NotSupportedException"},{"id":124,"kind":262144,"name":"stack","url":"classes/NotSupportedException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"NotSupportedException"},{"id":125,"kind":2048,"name":"toString","url":"classes/NotSupportedException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"NotSupportedException"},{"id":126,"kind":262144,"name":"innerException","url":"classes/NotSupportedException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"NotSupportedException"},{"id":127,"kind":128,"name":"ObjectDisposedException","url":"classes/ObjectDisposedException.html","classes":"tsd-kind-class"},{"id":128,"kind":2048,"name":"isError","url":"classes/ObjectDisposedException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ObjectDisposedException"},{"id":129,"kind":2048,"name":"fromObject","url":"classes/ObjectDisposedException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ObjectDisposedException"},{"id":130,"kind":512,"name":"constructor","url":"classes/ObjectDisposedException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ObjectDisposedException"},{"id":131,"kind":262144,"name":"objectName","url":"classes/ObjectDisposedException.html#objectName","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ObjectDisposedException"},{"id":132,"kind":1024,"name":"cause","url":"classes/ObjectDisposedException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ObjectDisposedException"},{"id":133,"kind":1024,"name":"data","url":"classes/ObjectDisposedException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ObjectDisposedException"},{"id":134,"kind":262144,"name":"stack","url":"classes/ObjectDisposedException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ObjectDisposedException"},{"id":135,"kind":2048,"name":"toString","url":"classes/ObjectDisposedException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"ObjectDisposedException"},{"id":136,"kind":262144,"name":"innerException","url":"classes/ObjectDisposedException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ObjectDisposedException"},{"id":137,"kind":128,"name":"OperationAbortedException","url":"classes/OperationAbortedException.html","classes":"tsd-kind-class"},{"id":138,"kind":2048,"name":"isError","url":"classes/OperationAbortedException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"OperationAbortedException"},{"id":139,"kind":2048,"name":"fromObject","url":"classes/OperationAbortedException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"OperationAbortedException"},{"id":140,"kind":512,"name":"constructor","url":"classes/OperationAbortedException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"OperationAbortedException"},{"id":141,"kind":1024,"name":"cause","url":"classes/OperationAbortedException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"OperationAbortedException"},{"id":142,"kind":1024,"name":"data","url":"classes/OperationAbortedException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"OperationAbortedException"},{"id":143,"kind":262144,"name":"stack","url":"classes/OperationAbortedException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"OperationAbortedException"},{"id":144,"kind":2048,"name":"toString","url":"classes/OperationAbortedException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"OperationAbortedException"},{"id":145,"kind":262144,"name":"innerException","url":"classes/OperationAbortedException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"OperationAbortedException"},{"id":146,"kind":128,"name":"TimeoutException","url":"classes/TimeoutException.html","classes":"tsd-kind-class"},{"id":147,"kind":2048,"name":"isError","url":"classes/TimeoutException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"TimeoutException"},{"id":148,"kind":2048,"name":"fromObject","url":"classes/TimeoutException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"TimeoutException"},{"id":149,"kind":512,"name":"constructor","url":"classes/TimeoutException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"TimeoutException"},{"id":150,"kind":1024,"name":"_timeout","url":"classes/TimeoutException.html#_timeout","classes":"tsd-kind-property tsd-parent-kind-class","parent":"TimeoutException"},{"id":151,"kind":262144,"name":"timeout","url":"classes/TimeoutException.html#timeout","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"TimeoutException"},{"id":152,"kind":1024,"name":"cause","url":"classes/TimeoutException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"TimeoutException"},{"id":153,"kind":1024,"name":"data","url":"classes/TimeoutException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"TimeoutException"},{"id":154,"kind":262144,"name":"stack","url":"classes/TimeoutException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TimeoutException"},{"id":155,"kind":2048,"name":"toString","url":"classes/TimeoutException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TimeoutException"},{"id":156,"kind":262144,"name":"innerException","url":"classes/TimeoutException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TimeoutException"},{"id":157,"kind":128,"name":"ValidationException","url":"classes/ValidationException.html","classes":"tsd-kind-class"},{"id":158,"kind":2048,"name":"isError","url":"classes/ValidationException.html#isError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ValidationException"},{"id":159,"kind":2048,"name":"fromObject","url":"classes/ValidationException.html#fromObject","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"ValidationException"},{"id":160,"kind":512,"name":"constructor","url":"classes/ValidationException.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ValidationException"},{"id":161,"kind":1024,"name":"cause","url":"classes/ValidationException.html#cause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ValidationException"},{"id":162,"kind":1024,"name":"data","url":"classes/ValidationException.html#data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"ValidationException"},{"id":163,"kind":262144,"name":"stack","url":"classes/ValidationException.html#stack","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ValidationException"},{"id":164,"kind":2048,"name":"toString","url":"classes/ValidationException.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"ValidationException"},{"id":165,"kind":262144,"name":"innerException","url":"classes/ValidationException.html#innerException","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ValidationException"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,25.923]],["parent/0",[]],["name/1",[1,22.558]],["parent/1",[0,2.477]],["name/2",[2,22.558]],["parent/2",[0,2.477]],["name/3",[3,22.558]],["parent/3",[0,2.477]],["name/4",[4,47.125]],["parent/4",[0,2.477]],["name/5",[5,47.125]],["parent/5",[0,2.477]],["name/6",[6,22.558]],["parent/6",[0,2.477]],["name/7",[7,47.125]],["parent/7",[0,2.477]],["name/8",[8,22.558]],["parent/8",[0,2.477]],["name/9",[9,22.558]],["parent/9",[0,2.477]],["name/10",[10,22.558]],["parent/10",[0,2.477]],["name/11",[11,22.558]],["parent/11",[0,2.477]],["name/12",[12,27.666]],["parent/12",[]],["name/13",[1,22.558]],["parent/13",[12,2.643]],["name/14",[2,22.558]],["parent/14",[12,2.643]],["name/15",[3,22.558]],["parent/15",[12,2.643]],["name/16",[13,38.652]],["parent/16",[12,2.643]],["name/17",[8,22.558]],["parent/17",[12,2.643]],["name/18",[9,22.558]],["parent/18",[12,2.643]],["name/19",[6,22.558]],["parent/19",[12,2.643]],["name/20",[10,22.558]],["parent/20",[12,2.643]],["name/21",[11,22.558]],["parent/21",[12,2.643]],["name/22",[14,27.666]],["parent/22",[]],["name/23",[1,22.558]],["parent/23",[14,2.643]],["name/24",[2,22.558]],["parent/24",[14,2.643]],["name/25",[3,22.558]],["parent/25",[14,2.643]],["name/26",[13,38.652]],["parent/26",[14,2.643]],["name/27",[8,22.558]],["parent/27",[14,2.643]],["name/28",[9,22.558]],["parent/28",[14,2.643]],["name/29",[6,22.558]],["parent/29",[14,2.643]],["name/30",[10,22.558]],["parent/30",[14,2.643]],["name/31",[11,22.558]],["parent/31",[14,2.643]],["name/32",[15,26.756]],["parent/32",[]],["name/33",[1,22.558]],["parent/33",[15,2.556]],["name/34",[2,22.558]],["parent/34",[15,2.556]],["name/35",[3,22.558]],["parent/35",[15,2.556]],["name/36",[16,47.125]],["parent/36",[15,2.556]],["name/37",[13,38.652]],["parent/37",[15,2.556]],["name/38",[8,22.558]],["parent/38",[15,2.556]],["name/39",[9,22.558]],["parent/39",[15,2.556]],["name/40",[6,22.558]],["parent/40",[15,2.556]],["name/41",[10,22.558]],["parent/41",[15,2.556]],["name/42",[11,22.558]],["parent/42",[15,2.556]],["name/43",[17,28.667]],["parent/43",[]],["name/44",[1,22.558]],["parent/44",[17,2.739]],["name/45",[2,22.558]],["parent/45",[17,2.739]],["name/46",[3,22.558]],["parent/46",[17,2.739]],["name/47",[8,22.558]],["parent/47",[17,2.739]],["name/48",[9,22.558]],["parent/48",[17,2.739]],["name/49",[6,22.558]],["parent/49",[17,2.739]],["name/50",[10,22.558]],["parent/50",[17,2.739]],["name/51",[11,22.558]],["parent/51",[17,2.739]],["name/52",[18,27.666]],["parent/52",[]],["name/53",[1,22.558]],["parent/53",[18,2.643]],["name/54",[2,22.558]],["parent/54",[18,2.643]],["name/55",[3,22.558]],["parent/55",[18,2.643]],["name/56",[19,47.125]],["parent/56",[18,2.643]],["name/57",[8,22.558]],["parent/57",[18,2.643]],["name/58",[9,22.558]],["parent/58",[18,2.643]],["name/59",[6,22.558]],["parent/59",[18,2.643]],["name/60",[10,22.558]],["parent/60",[18,2.643]],["name/61",[11,22.558]],["parent/61",[18,2.643]],["name/62",[20,28.667]],["parent/62",[]],["name/63",[1,22.558]],["parent/63",[20,2.739]],["name/64",[2,22.558]],["parent/64",[20,2.739]],["name/65",[3,22.558]],["parent/65",[20,2.739]],["name/66",[8,22.558]],["parent/66",[20,2.739]],["name/67",[9,22.558]],["parent/67",[20,2.739]],["name/68",[6,22.558]],["parent/68",[20,2.739]],["name/69",[10,22.558]],["parent/69",[20,2.739]],["name/70",[11,22.558]],["parent/70",[20,2.739]],["name/71",[21,28.667]],["parent/71",[]],["name/72",[1,22.558]],["parent/72",[21,2.739]],["name/73",[2,22.558]],["parent/73",[21,2.739]],["name/74",[3,22.558]],["parent/74",[21,2.739]],["name/75",[8,22.558]],["parent/75",[21,2.739]],["name/76",[9,22.558]],["parent/76",[21,2.739]],["name/77",[6,22.558]],["parent/77",[21,2.739]],["name/78",[10,22.558]],["parent/78",[21,2.739]],["name/79",[11,22.558]],["parent/79",[21,2.739]],["name/80",[22,28.667]],["parent/80",[]],["name/81",[1,22.558]],["parent/81",[22,2.739]],["name/82",[2,22.558]],["parent/82",[22,2.739]],["name/83",[3,22.558]],["parent/83",[22,2.739]],["name/84",[8,22.558]],["parent/84",[22,2.739]],["name/85",[9,22.558]],["parent/85",[22,2.739]],["name/86",[6,22.558]],["parent/86",[22,2.739]],["name/87",[10,22.558]],["parent/87",[22,2.739]],["name/88",[11,22.558]],["parent/88",[22,2.739]],["name/89",[23,26.756]],["parent/89",[]],["name/90",[1,22.558]],["parent/90",[23,2.556]],["name/91",[2,22.558]],["parent/91",[23,2.556]],["name/92",[3,22.558]],["parent/92",[23,2.556]],["name/93",[24,47.125]],["parent/93",[23,2.556]],["name/94",[25,47.125]],["parent/94",[23,2.556]],["name/95",[8,22.558]],["parent/95",[23,2.556]],["name/96",[9,22.558]],["parent/96",[23,2.556]],["name/97",[6,22.558]],["parent/97",[23,2.556]],["name/98",[10,22.558]],["parent/98",[23,2.556]],["name/99",[11,22.558]],["parent/99",[23,2.556]],["name/100",[26,28.667]],["parent/100",[]],["name/101",[1,22.558]],["parent/101",[26,2.739]],["name/102",[2,22.558]],["parent/102",[26,2.739]],["name/103",[3,22.558]],["parent/103",[26,2.739]],["name/104",[8,22.558]],["parent/104",[26,2.739]],["name/105",[9,22.558]],["parent/105",[26,2.739]],["name/106",[6,22.558]],["parent/106",[26,2.739]],["name/107",[10,22.558]],["parent/107",[26,2.739]],["name/108",[11,22.558]],["parent/108",[26,2.739]],["name/109",[27,28.667]],["parent/109",[]],["name/110",[1,22.558]],["parent/110",[27,2.739]],["name/111",[2,22.558]],["parent/111",[27,2.739]],["name/112",[3,22.558]],["parent/112",[27,2.739]],["name/113",[8,22.558]],["parent/113",[27,2.739]],["name/114",[9,22.558]],["parent/114",[27,2.739]],["name/115",[6,22.558]],["parent/115",[27,2.739]],["name/116",[10,22.558]],["parent/116",[27,2.739]],["name/117",[11,22.558]],["parent/117",[27,2.739]],["name/118",[28,28.667]],["parent/118",[]],["name/119",[1,22.558]],["parent/119",[28,2.739]],["name/120",[2,22.558]],["parent/120",[28,2.739]],["name/121",[3,22.558]],["parent/121",[28,2.739]],["name/122",[8,22.558]],["parent/122",[28,2.739]],["name/123",[9,22.558]],["parent/123",[28,2.739]],["name/124",[6,22.558]],["parent/124",[28,2.739]],["name/125",[10,22.558]],["parent/125",[28,2.739]],["name/126",[11,22.558]],["parent/126",[28,2.739]],["name/127",[29,27.666]],["parent/127",[]],["name/128",[1,22.558]],["parent/128",[29,2.643]],["name/129",[2,22.558]],["parent/129",[29,2.643]],["name/130",[3,22.558]],["parent/130",[29,2.643]],["name/131",[30,47.125]],["parent/131",[29,2.643]],["name/132",[8,22.558]],["parent/132",[29,2.643]],["name/133",[9,22.558]],["parent/133",[29,2.643]],["name/134",[6,22.558]],["parent/134",[29,2.643]],["name/135",[10,22.558]],["parent/135",[29,2.643]],["name/136",[11,22.558]],["parent/136",[29,2.643]],["name/137",[31,28.667]],["parent/137",[]],["name/138",[1,22.558]],["parent/138",[31,2.739]],["name/139",[2,22.558]],["parent/139",[31,2.739]],["name/140",[3,22.558]],["parent/140",[31,2.739]],["name/141",[8,22.558]],["parent/141",[31,2.739]],["name/142",[9,22.558]],["parent/142",[31,2.739]],["name/143",[6,22.558]],["parent/143",[31,2.739]],["name/144",[10,22.558]],["parent/144",[31,2.739]],["name/145",[11,22.558]],["parent/145",[31,2.739]],["name/146",[32,26.756]],["parent/146",[]],["name/147",[1,22.558]],["parent/147",[32,2.556]],["name/148",[2,22.558]],["parent/148",[32,2.556]],["name/149",[3,22.558]],["parent/149",[32,2.556]],["name/150",[33,47.125]],["parent/150",[32,2.556]],["name/151",[34,47.125]],["parent/151",[32,2.556]],["name/152",[8,22.558]],["parent/152",[32,2.556]],["name/153",[9,22.558]],["parent/153",[32,2.556]],["name/154",[6,22.558]],["parent/154",[32,2.556]],["name/155",[10,22.558]],["parent/155",[32,2.556]],["name/156",[11,22.558]],["parent/156",[32,2.556]],["name/157",[35,28.667]],["parent/157",[]],["name/158",[1,22.558]],["parent/158",[35,2.739]],["name/159",[2,22.558]],["parent/159",[35,2.739]],["name/160",[3,22.558]],["parent/160",[35,2.739]],["name/161",[8,22.558]],["parent/161",[35,2.739]],["name/162",[9,22.558]],["parent/162",[35,2.739]],["name/163",[6,22.558]],["parent/163",[35,2.739]],["name/164",[10,22.558]],["parent/164",[35,2.739]],["name/165",[11,22.558]],["parent/165",[35,2.739]]],"invertedIndex":[["_entitytype",{"_index":24,"name":{"93":{}},"parent":{}}],["_timeout",{"_index":33,"name":{"150":{}},"parent":{}}],["actualvalue",{"_index":16,"name":{"36":{}},"parent":{}}],["aggregateexception",{"_index":0,"name":{"0":{}},"parent":{"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{}}}],["argumentexception",{"_index":12,"name":{"12":{}},"parent":{"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{}}}],["argumentname",{"_index":13,"name":{"16":{},"26":{},"37":{}},"parent":{}}],["argumentnullexception",{"_index":14,"name":{"22":{}},"parent":{"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{}}}],["argumentoutofrangeexception",{"_index":15,"name":{"32":{}},"parent":{"33":{},"34":{},"35":{},"36":{},"37":{},"38":{},"39":{},"40":{},"41":{},"42":{}}}],["cause",{"_index":8,"name":{"8":{},"17":{},"27":{},"38":{},"47":{},"57":{},"66":{},"75":{},"84":{},"95":{},"104":{},"113":{},"122":{},"132":{},"141":{},"152":{},"161":{}},"parent":{}}],["chucknorrisexception",{"_index":18,"name":{"52":{}},"parent":{"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{}}}],["constructor",{"_index":3,"name":{"3":{},"15":{},"25":{},"35":{},"46":{},"55":{},"65":{},"74":{},"83":{},"92":{},"103":{},"112":{},"121":{},"130":{},"140":{},"149":{},"160":{}},"parent":{}}],["data",{"_index":9,"name":{"9":{},"18":{},"28":{},"39":{},"48":{},"58":{},"67":{},"76":{},"85":{},"96":{},"105":{},"114":{},"123":{},"133":{},"142":{},"153":{},"162":{}},"parent":{}}],["entitytype",{"_index":25,"name":{"94":{}},"parent":{}}],["exception",{"_index":17,"name":{"43":{}},"parent":{"44":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{}}}],["exceptionobject",{"_index":19,"name":{"56":{}},"parent":{}}],["fromobject",{"_index":2,"name":{"2":{},"14":{},"24":{},"34":{},"45":{},"54":{},"64":{},"73":{},"82":{},"91":{},"102":{},"111":{},"120":{},"129":{},"139":{},"148":{},"159":{}},"parent":{}}],["innerexception",{"_index":11,"name":{"11":{},"21":{},"31":{},"42":{},"51":{},"61":{},"70":{},"79":{},"88":{},"99":{},"108":{},"117":{},"126":{},"136":{},"145":{},"156":{},"165":{}},"parent":{}}],["innerexceptions",{"_index":4,"name":{"4":{}},"parent":{}}],["invalidformatexception",{"_index":20,"name":{"62":{}},"parent":{"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{}}}],["invalidoperationexception",{"_index":21,"name":{"71":{}},"parent":{"72":{},"73":{},"74":{},"75":{},"76":{},"77":{},"78":{},"79":{}}}],["ioexception",{"_index":22,"name":{"80":{}},"parent":{"81":{},"82":{},"83":{},"84":{},"85":{},"86":{},"87":{},"88":{}}}],["iserror",{"_index":1,"name":{"1":{},"13":{},"23":{},"33":{},"44":{},"53":{},"63":{},"72":{},"81":{},"90":{},"101":{},"110":{},"119":{},"128":{},"138":{},"147":{},"158":{}},"parent":{}}],["iterator",{"_index":7,"name":{"7":{}},"parent":{}}],["notfoundexception",{"_index":23,"name":{"89":{}},"parent":{"90":{},"91":{},"92":{},"93":{},"94":{},"95":{},"96":{},"97":{},"98":{},"99":{}}}],["notimplementedexception",{"_index":26,"name":{"100":{}},"parent":{"101":{},"102":{},"103":{},"104":{},"105":{},"106":{},"107":{},"108":{}}}],["notpermittedexception",{"_index":27,"name":{"109":{}},"parent":{"110":{},"111":{},"112":{},"113":{},"114":{},"115":{},"116":{},"117":{}}}],["notsupportedexception",{"_index":28,"name":{"118":{}},"parent":{"119":{},"120":{},"121":{},"122":{},"123":{},"124":{},"125":{},"126":{}}}],["objectdisposedexception",{"_index":29,"name":{"127":{}},"parent":{"128":{},"129":{},"130":{},"131":{},"132":{},"133":{},"134":{},"135":{},"136":{}}}],["objectname",{"_index":30,"name":{"131":{}},"parent":{}}],["operationabortedexception",{"_index":31,"name":{"137":{}},"parent":{"138":{},"139":{},"140":{},"141":{},"142":{},"143":{},"144":{},"145":{}}}],["stack",{"_index":6,"name":{"6":{},"19":{},"29":{},"40":{},"49":{},"59":{},"68":{},"77":{},"86":{},"97":{},"106":{},"115":{},"124":{},"134":{},"143":{},"154":{},"163":{}},"parent":{}}],["timeout",{"_index":34,"name":{"151":{}},"parent":{}}],["timeoutexception",{"_index":32,"name":{"146":{}},"parent":{"147":{},"148":{},"149":{},"150":{},"151":{},"152":{},"153":{},"154":{},"155":{},"156":{}}}],["toarray",{"_index":5,"name":{"5":{}},"parent":{}}],["tostring",{"_index":10,"name":{"10":{},"20":{},"30":{},"41":{},"50":{},"60":{},"69":{},"78":{},"87":{},"98":{},"107":{},"116":{},"125":{},"135":{},"144":{},"155":{},"164":{}},"parent":{}}],["validationexception",{"_index":35,"name":{"157":{}},"parent":{"158":{},"159":{},"160":{},"161":{},"162":{},"163":{},"164":{},"165":{}}}]],"pipeline":[]}} \ No newline at end of file diff --git a/Docs/classes/AggregateException.html b/Docs/classes/AggregateException.html index 0bd4034..f4bd349 100644 --- a/Docs/classes/AggregateException.html +++ b/Docs/classes/AggregateException.html @@ -1,4 +1,4 @@ AggregateException | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class AggregateException

Exception that will be thrown if multiple errors occurred.

-

Hierarchy

Implements

  • Iterable<Error>

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

Readonly innerExceptions

innerExceptions: readonly Error[]

message

message: string

name

name: string

Accessors

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    -

    Returns undefined | Error

stack

  • get stack(): string

Methods

[iterator]

  • [iterator](): Iterator<Error, any, undefined>

toArray

  • toArray(): Error[]

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Implements

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

Readonly innerExceptions

innerExceptions: readonly Error[]

message

message: string

name

name: string

Accessors

innerException

stack

Methods

[iterator]

toArray

toString

Static fromObject

Static isError

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/classes/ArgumentException.html b/Docs/classes/ArgumentException.html index 4fb071c..c8ece6d 100644 --- a/Docs/classes/ArgumentException.html +++ b/Docs/classes/ArgumentException.html @@ -1,4 +1,4 @@ ArgumentException | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ArgumentException

Exception that will be thrown if a value is invalid.

-

Hierarchy

Index

Constructors

constructor

  • new ArgumentException(argumentName: PropertyKey, message?: string, cause?: Error): ArgumentException
  • new ArgumentException(argumentName: PropertyKey, cause?: Error): ArgumentException

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

argumentName

  • get argumentName(): PropertyKey

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    -

    Returns undefined | Error

stack

  • get stack(): string

Methods

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

argumentName

innerException

stack

Methods

toString

Static fromObject

Static isError

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/classes/ArgumentNullException.html b/Docs/classes/ArgumentNullException.html index 397428b..4a8d7af 100644 --- a/Docs/classes/ArgumentNullException.html +++ b/Docs/classes/ArgumentNullException.html @@ -1,4 +1,4 @@ ArgumentNullException | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ArgumentNullException

Exception that will be thrown if a value is null or undefined.

-

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

argumentName

  • get argumentName(): PropertyKey

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    -

    Returns undefined | Error

stack

  • get stack(): string

Methods

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

argumentName

innerException

stack

Methods

toString

Static fromObject

Static isError

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/classes/ArgumentOutOfRangeException.html b/Docs/classes/ArgumentOutOfRangeException.html index b16a0d4..f020d0b 100644 --- a/Docs/classes/ArgumentOutOfRangeException.html +++ b/Docs/classes/ArgumentOutOfRangeException.html @@ -1,4 +1,4 @@ ArgumentOutOfRangeException | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ArgumentOutOfRangeException

Exception that will be thrown if a value is out of a range.

-

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

actualValue

  • get actualValue(): any

argumentName

  • get argumentName(): PropertyKey

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    -

    Returns undefined | Error

stack

  • get stack(): string

Methods

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

actualValue

argumentName

innerException

stack

Methods

toString

Static fromObject

Static isError

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/classes/ChuckNorrisException.html b/Docs/classes/ChuckNorrisException.html index 428cc30..c11d6fd 100644 --- a/Docs/classes/ChuckNorrisException.html +++ b/Docs/classes/ChuckNorrisException.html @@ -1,4 +1,4 @@ ChuckNorrisException | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ChuckNorrisException

Exception that will be thrown if a plain object is thrown somewhere else.

-

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

exceptionObject

  • get exceptionObject(): any

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    -

    Returns undefined | Error

stack

  • get stack(): string

Methods

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

exceptionObject

innerException

stack

Methods

toString

Static fromObject

Static isError

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/classes/Exception.html b/Docs/classes/Exception.html index eac540c..0c64943 100644 --- a/Docs/classes/Exception.html +++ b/Docs/classes/Exception.html @@ -1,4 +1,4 @@ Exception | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Exception

Baseclass of all other exception classes.

-

Hierarchy

Index

Constructors

constructor

  • new Exception(message: string, cause?: Error): Exception

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    -

    Returns undefined | Error

stack

  • get stack(): string

Methods

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

stack

Methods

toString

Static fromObject

Static isError

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/classes/IOException.html b/Docs/classes/IOException.html index ab4c801..8391b81 100644 --- a/Docs/classes/IOException.html +++ b/Docs/classes/IOException.html @@ -1,4 +1,4 @@ IOException | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class IOException

Exception that will be thrown if an input or output error occurred.

-

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    -

    Returns undefined | Error

stack

  • get stack(): string

Methods

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

stack

Methods

toString

Static fromObject

Static isError

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/classes/InvalidFormatException.html b/Docs/classes/InvalidFormatException.html index 0b37be2..dfee921 100644 --- a/Docs/classes/InvalidFormatException.html +++ b/Docs/classes/InvalidFormatException.html @@ -1,4 +1,4 @@ InvalidFormatException | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class InvalidFormatException

Exception that will be thrown if an object or string doesn't fulfill the excepted format.

-

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    -

    Returns undefined | Error

stack

  • get stack(): string

Methods

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

stack

Methods

toString

Static fromObject

Static isError

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/classes/InvalidOperationException.html b/Docs/classes/InvalidOperationException.html index 4400588..c480f7a 100644 --- a/Docs/classes/InvalidOperationException.html +++ b/Docs/classes/InvalidOperationException.html @@ -1,4 +1,4 @@ InvalidOperationException | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class InvalidOperationException

Exception that will be thrown if a call of a method is invalid because of the current state of the object.

-

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    -

    Returns undefined | Error

stack

  • get stack(): string

Methods

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

stack

Methods

toString

Static fromObject

Static isError

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/classes/NotFoundException.html b/Docs/classes/NotFoundException.html index 8977cb5..0e57670 100644 --- a/Docs/classes/NotFoundException.html +++ b/Docs/classes/NotFoundException.html @@ -1,4 +1,4 @@ NotFoundException | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class NotFoundException

Exception that will be thrown if some resource or entity was not found.

-

Hierarchy

Index

Constructors

constructor

  • new NotFoundException(entity: string | (new (...args: any[]) => any), message?: string, cause?: Error): NotFoundException
  • new NotFoundException(entity: string | (new (...args: any[]) => any), cause?: Error): NotFoundException

Properties

Readonly _entityType

_entityType: symbol

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

entityType

  • get entityType(): string

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    -

    Returns undefined | Error

stack

  • get stack(): string

Methods

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Constructors

constructor

Properties

Readonly _entityType

_entityType: symbol

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

entityType

innerException

stack

Methods

toString

Static fromObject

Static isError

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/classes/NotImplementedException.html b/Docs/classes/NotImplementedException.html index 17355f6..649f3eb 100644 --- a/Docs/classes/NotImplementedException.html +++ b/Docs/classes/NotImplementedException.html @@ -1,4 +1,4 @@ NotImplementedException | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class NotImplementedException

Exception that will be thrown if some method or operation is not implemented.

-

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    -

    Returns undefined | Error

stack

  • get stack(): string

Methods

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

stack

Methods

toString

Static fromObject

Static isError

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/classes/NotPermittedException.html b/Docs/classes/NotPermittedException.html index 81ff072..2478e43 100644 --- a/Docs/classes/NotPermittedException.html +++ b/Docs/classes/NotPermittedException.html @@ -1,4 +1,4 @@ NotPermittedException | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class NotPermittedException

Exception that will be thrown if the callee is not permitted to execute this method or operation.

-

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    -

    Returns undefined | Error

stack

  • get stack(): string

Methods

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

stack

Methods

toString

Static fromObject

Static isError

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/classes/NotSupportedException.html b/Docs/classes/NotSupportedException.html index eacf329..81fa662 100644 --- a/Docs/classes/NotSupportedException.html +++ b/Docs/classes/NotSupportedException.html @@ -1,4 +1,4 @@ NotSupportedException | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class NotSupportedException

Exception that will be thrown if the called method or operation is not supported.

-

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    -

    Returns undefined | Error

stack

  • get stack(): string

Methods

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

stack

Methods

toString

Static fromObject

Static isError

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/classes/ObjectDisposedException.html b/Docs/classes/ObjectDisposedException.html new file mode 100644 index 0000000..8ad1b56 --- /dev/null +++ b/Docs/classes/ObjectDisposedException.html @@ -0,0 +1,4 @@ +ObjectDisposedException | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ObjectDisposedException

+

Exception that will be thrown if an operation is invalid because the object is already disposed.

+

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    +

    Returns undefined | Error

objectName

  • get objectName(): string

stack

  • get stack(): string

Methods

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/classes/OperationAbortedException.html b/Docs/classes/OperationAbortedException.html index 0150c87..0d7c1de 100644 --- a/Docs/classes/OperationAbortedException.html +++ b/Docs/classes/OperationAbortedException.html @@ -1,4 +1,4 @@ OperationAbortedException | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class OperationAbortedException

Exception that will be thrown if an operation get's aborted for some reason. For example a timeout has been reached.

-

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    -

    Returns undefined | Error

stack

  • get stack(): string

Methods

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

stack

Methods

toString

Static fromObject

Static isError

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/classes/TimeoutException.html b/Docs/classes/TimeoutException.html index dc3a442..a09e212 100644 --- a/Docs/classes/TimeoutException.html +++ b/Docs/classes/TimeoutException.html @@ -1,4 +1,4 @@ TimeoutException | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class TimeoutException

Exception that will be thrown if some operation has timed out.

-

Hierarchy

Index

Constructors

constructor

Properties

Readonly _timeout

_timeout: symbol

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    -

    Returns undefined | Error

stack

  • get stack(): string

timeout

  • get timeout(): number

Methods

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Constructors

constructor

Properties

Readonly _timeout

_timeout: symbol

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

stack

timeout

Methods

toString

Static fromObject

Static isError

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/classes/ValidationException.html b/Docs/classes/ValidationException.html index 3dfbd11..8055d68 100644 --- a/Docs/classes/ValidationException.html +++ b/Docs/classes/ValidationException.html @@ -1,4 +1,4 @@ ValidationException | grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ValidationException

Exception that will be thrown if a validation of some argument failed.

-

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

  • get innerException(): undefined | Error
  • deprecated

    The property should not be used. Use instead .cause

    -

    Returns undefined | Error

stack

  • get stack(): string

Methods

toString

  • toString(): string

Static fromObject

  • fromObject(ex: any): Error

Static isError

  • isError(ex: any): ex is Error

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Constructors

constructor

Properties

Optional Readonly cause

cause?: Error

Readonly data

data: Record<PropertyKey, any>

message

message: string

name

name: string

Accessors

innerException

stack

Methods

toString

Static fromObject

Static isError

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/index.html b/Docs/index.html index 021ba7c..db11e29 100644 --- a/Docs/index.html +++ b/Docs/index.html @@ -24,35 +24,35 @@

Usage

Exception

Baseclass of all other exception classes.

-
import {Exception} from 'grexcept';
new Exception(message: string, innerException?: Error)

Exception.fromObject(ex: any): Error
// wrapps object inside a exception object if object is not already a exception or error

Exception.isError(ex: any): ex is Error
// returns true for objects which implement the error-shape +
import {Exception} from 'grexcept';
new Exception(message: string, cause?: Error)

Exception.fromObject(ex: any): Error
// wrapps object inside a exception object if object is not already a exception or error

Exception.isError(ex: any): ex is Error
// returns true for objects which implement the error-shape

AggregateException

Exception that will be thrown if multiple errors occurred.

-
import {AggregateException} from 'grexcept';
new AggregateException(innerException: Error | Error[], message?: string)
new AggregateException(innerException: Error | Error[]) +
import {AggregateException} from 'grexcept';
new AggregateException(innerExceptions: Error | Error[], message?: string)
new AggregateException(innerExceptions: Error | Error[])

ArgumentException

Exception that will be thrown if a value is invalid.

-
import {ArgumentException} from 'grexcept';
new ArgumentException(argumentName: PropertyKey, message?: string, innerException?: Error)
new ArgumentException(argumentName: PropertyKey, innerException?: Error) +
import {ArgumentException} from 'grexcept';
new ArgumentException(argumentName: PropertyKey, message?: string, cause?: Error)
new ArgumentException(argumentName: PropertyKey, cause?: Error)

ArgumentNullException

Exception that will be thrown if a value is null or undefined.

-
import {ArgumentNullException} from 'grexcept';
new ArgumentNullException(argumentName: PropertyKey, message?: string, innerException?: Error)
new ArgumentNullException(argumentName: PropertyKey, innerException?: Error) +
import {ArgumentNullException} from 'grexcept';
new ArgumentNullException(argumentName: PropertyKey, message?: string, cause?: Error)
new ArgumentNullException(argumentName: PropertyKey, cause?: Error)

ArgumentOutOfRangeException

Exception that will be thrown if a value is out of a range.

-
import {ArgumentOutOfRangeException} from 'grexcept';
new ArgumentOutOfRangeException(argumentName: PropertyKey, actualValue: any, message?: string, innerException?: Error)
new ArgumentOutOfRangeException(argumentName: PropertyKey, actualValue: any, innerException?: Error) +
import {ArgumentOutOfRangeException} from 'grexcept';
new ArgumentOutOfRangeException(argumentName: PropertyKey, actualValue: any, message?: string, cause?: Error)
new ArgumentOutOfRangeException(argumentName: PropertyKey, actualValue: any, cause?: Error)
@@ -66,68 +66,75 @@

ChuckNorrisException

InvalidOperationException

Exception that will be thrown if a call of a method is invalid because of the current state of the object.

-
import {InvalidOperationException} from 'grexcept';
new InvalidOperationException(message?: string, innerException?: Error)
new InvalidOperationException(innerException?: Error) +
import {InvalidOperationException} from 'grexcept';
new InvalidOperationException(message?: string, cause?: Error)
new InvalidOperationException(cause?: Error)

InvalidFormatException

Exception that will be thrown if an object or string doesn't fulfill the excepted format.

-
import {InvalidFormatException} from 'grexcept';
new InvalidFormatException(message?: string, innerException?: Error)
new InvalidFormatException(innerException?: Error) +
import {InvalidFormatException} from 'grexcept';
new InvalidFormatException(message?: string, cause?: Error)
new InvalidFormatException(cause?: Error)

IOException

Exception that will be thrown if an input or output error occurred.

-
import {IOException} from 'grexcept';
new IOException(message?: string, innerException?: Error)
new IOException(innerException?: Error) +
import {IOException} from 'grexcept';
new IOException(message?: string, cause?: Error)
new IOException(cause?: Error)

NotFoundException

Exception that will be thrown if some resource or entity was not found.

-
import {NotFoundException} from 'grexcept';
new NotFoundException(entity: string | (new (...args: any[]) => any), message?: string, innerException?: Error)
new NotFoundException(entity: string | (new (...args: any[]) => any), innerException?: Error) +
import {NotFoundException} from 'grexcept';
new NotFoundException(entity: string | (new (...args: any[]) => any), message?: string, cause?: Error)
new NotFoundException(entity: string | (new (...args: any[]) => any), cause?: Error)

NotImplementedException

Exception that will be thrown if some method or operation is not implemented.

-
import {NotImplementedException} from 'grexcept';
new NotImplementedException(message?: string, innerException?: Error)
new NotImplementedException(innerException?: Error) +
import {NotImplementedException} from 'grexcept';
new NotImplementedException(message?: string, cause?: Error)
new NotImplementedException(cause?: Error)

NotPermittedException

Exception that will be thrown if the callee is not permitted to execute this method or operation.

-
import {NotPermittedException} from 'grexcept';
new NotPermittedException(message?: string, innerException?: Error)
new NotPermittedException(innerException?: Error) +
import {NotPermittedException} from 'grexcept';
new NotPermittedException(message?: string, cause?: Error)
new NotPermittedException(cause?: Error)

NotSupportedException

Exception that will be thrown if the called method or operation is not supported.

-
import {NotSupportedException} from 'grexcept';
new NotSupportedException(message?: string, innerException?: Error)
new NotSupportedException(innerException?: Error) +
import {NotSupportedException} from 'grexcept';
new NotSupportedException(message?: string, cause?: Error)
new NotSupportedException(cause?: Error) +
+ + +

ObjectDisposedException

+
+

Exception that will be thrown if an operation is invalid because the object is already disposed.

+
import {ObjectDisposedException} from 'grexcept';
new ObjectDisposedException(objectName: string, message?: string, cause?: Error)
new ObjectDisposedException(objectName: string, cause?: Error)

OperationAbortedException

-
import {OperationAbortedException} from 'grexcept';
new OperationAbortedException(reason?: string, innerException?: Error)
new OperationAbortedException(innerException?: Error) +
import {OperationAbortedException} from 'grexcept';
new OperationAbortedException(reason?: string, cause?: Error)
new OperationAbortedException(cause?: Error)

TimeoutException

Exception that will be thrown if a timeout has been reached and an operation was canceled.

-
import {TimeoutException} from 'grexcept';
new TimeoutException(timeout: number, reason?: string, innerException?: Error)
new TimeoutException(timeout: number, innerException?: Error) +
import {TimeoutException} from 'grexcept';
new TimeoutException(timeout: number, reason?: string, cause?: Error)
new TimeoutException(timeout: number, cause?: Error)

ValidationException

Exception that will be thrown if a validation of some argument failed.

-
import {ValidationException} from 'grexcept';
new ValidationException(message?: string, innerException?: Error)
new ValidationException(innerException?: Error) +
import {ValidationException} from 'grexcept';
new ValidationException(message?: string, cause?: Error)
new ValidationException(cause?: Error)
-

Legend

  • Constructor
  • Property
  • Method
  • Inherited property
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Inherited property
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/Docs/modules.html b/Docs/modules.html index 529245c..698b160 100644 --- a/Docs/modules.html +++ b/Docs/modules.html @@ -1 +1 @@ -grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

grexcept

Legend

  • Constructor
  • Property
  • Method
  • Inherited property
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +grexcept
Options
All
  • Public
  • Public/Protected
  • All
Menu

grexcept

Legend

  • Constructor
  • Property
  • Method
  • Inherited property
  • Inherited method
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/README.md b/README.md index 53e9cad..8a5e9b1 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ follow this link: [Docs](https://htmlpreview.github.io/?https://raw.githubuserco Baseclass of all other exception classes. ``` import {Exception} from 'grexcept'; -new Exception(message: string, innerException?: Error) +new Exception(message: string, cause?: Error) Exception.fromObject(ex: any): Error // wrapps object inside a exception object if object is not already a exception or error @@ -37,32 +37,32 @@ Exception.isError(ex: any): ex is Error Exception that will be thrown if multiple errors occurred. ``` import {AggregateException} from 'grexcept'; -new AggregateException(innerException: Error | Error[], message?: string) -new AggregateException(innerException: Error | Error[]) +new AggregateException(innerExceptions: Error | Error[], message?: string) +new AggregateException(innerExceptions: Error | Error[]) ``` ### ArgumentException Exception that will be thrown if a value is invalid. ``` import {ArgumentException} from 'grexcept'; -new ArgumentException(argumentName: PropertyKey, message?: string, innerException?: Error) -new ArgumentException(argumentName: PropertyKey, innerException?: Error) +new ArgumentException(argumentName: PropertyKey, message?: string, cause?: Error) +new ArgumentException(argumentName: PropertyKey, cause?: Error) ``` ### ArgumentNullException Exception that will be thrown if a value is null or undefined. ``` import {ArgumentNullException} from 'grexcept'; -new ArgumentNullException(argumentName: PropertyKey, message?: string, innerException?: Error) -new ArgumentNullException(argumentName: PropertyKey, innerException?: Error) +new ArgumentNullException(argumentName: PropertyKey, message?: string, cause?: Error) +new ArgumentNullException(argumentName: PropertyKey, cause?: Error) ``` ### ArgumentOutOfRangeException Exception that will be thrown if a value is out of a range. ``` import {ArgumentOutOfRangeException} from 'grexcept'; -new ArgumentOutOfRangeException(argumentName: PropertyKey, actualValue: any, message?: string, innerException?: Error) -new ArgumentOutOfRangeException(argumentName: PropertyKey, actualValue: any, innerException?: Error) +new ArgumentOutOfRangeException(argumentName: PropertyKey, actualValue: any, message?: string, cause?: Error) +new ArgumentOutOfRangeException(argumentName: PropertyKey, actualValue: any, cause?: Error) ``` ### ChuckNorrisException @@ -76,77 +76,85 @@ new ChuckNorrisException(exceptionObject: any) Exception that will be thrown if a call of a method is invalid because of the current state of the object. ``` import {InvalidOperationException} from 'grexcept'; -new InvalidOperationException(message?: string, innerException?: Error) -new InvalidOperationException(innerException?: Error) +new InvalidOperationException(message?: string, cause?: Error) +new InvalidOperationException(cause?: Error) ``` ### InvalidFormatException Exception that will be thrown if an object or string doesn't fulfill the excepted format. ``` import {InvalidFormatException} from 'grexcept'; -new InvalidFormatException(message?: string, innerException?: Error) -new InvalidFormatException(innerException?: Error) +new InvalidFormatException(message?: string, cause?: Error) +new InvalidFormatException(cause?: Error) ``` ### IOException Exception that will be thrown if an input or output error occurred. ``` import {IOException} from 'grexcept'; -new IOException(message?: string, innerException?: Error) -new IOException(innerException?: Error) +new IOException(message?: string, cause?: Error) +new IOException(cause?: Error) ``` ### NotFoundException Exception that will be thrown if some resource or entity was not found. ``` import {NotFoundException} from 'grexcept'; -new NotFoundException(entity: string | (new (...args: any[]) => any), message?: string, innerException?: Error) -new NotFoundException(entity: string | (new (...args: any[]) => any), innerException?: Error) +new NotFoundException(entity: string | (new (...args: any[]) => any), message?: string, cause?: Error) +new NotFoundException(entity: string | (new (...args: any[]) => any), cause?: Error) ``` ### NotImplementedException Exception that will be thrown if some method or operation is not implemented. ``` import {NotImplementedException} from 'grexcept'; -new NotImplementedException(message?: string, innerException?: Error) -new NotImplementedException(innerException?: Error) +new NotImplementedException(message?: string, cause?: Error) +new NotImplementedException(cause?: Error) ``` ### NotPermittedException Exception that will be thrown if the callee is not permitted to execute this method or operation. ``` import {NotPermittedException} from 'grexcept'; -new NotPermittedException(message?: string, innerException?: Error) -new NotPermittedException(innerException?: Error) +new NotPermittedException(message?: string, cause?: Error) +new NotPermittedException(cause?: Error) ``` ### NotSupportedException Exception that will be thrown if the called method or operation is not supported. ``` import {NotSupportedException} from 'grexcept'; -new NotSupportedException(message?: string, innerException?: Error) -new NotSupportedException(innerException?: Error) +new NotSupportedException(message?: string, cause?: Error) +new NotSupportedException(cause?: Error) +``` + +### ObjectDisposedException +Exception that will be thrown if an operation is invalid because the object is already disposed. +``` +import {ObjectDisposedException} from 'grexcept'; +new ObjectDisposedException(objectName: string, message?: string, cause?: Error) +new ObjectDisposedException(objectName: string, cause?: Error) ``` ### OperationAbortedException ``` import {OperationAbortedException} from 'grexcept'; -new OperationAbortedException(reason?: string, innerException?: Error) -new OperationAbortedException(innerException?: Error) +new OperationAbortedException(reason?: string, cause?: Error) +new OperationAbortedException(cause?: Error) ``` ### TimeoutException Exception that will be thrown if a timeout has been reached and an operation was canceled. ``` import {TimeoutException} from 'grexcept'; -new TimeoutException(timeout: number, reason?: string, innerException?: Error) -new TimeoutException(timeout: number, innerException?: Error) +new TimeoutException(timeout: number, reason?: string, cause?: Error) +new TimeoutException(timeout: number, cause?: Error) ``` ### ValidationException Exception that will be thrown if a validation of some argument failed. ``` import {ValidationException} from 'grexcept'; -new ValidationException(message?: string, innerException?: Error) -new ValidationException(innerException?: Error) +new ValidationException(message?: string, cause?: Error) +new ValidationException(cause?: Error) ```