| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 | package haxe;@:coreApiclass Exception {	public var message(get,never):String;	public var stack(get,never):CallStack;	public var previous(get,never):Null<Exception>;	public var native(get,never):Any;	@:noCompletion var __exceptionMessage:String;	@:noCompletion var __exceptionStack:Null<CallStack>;	@:noCompletion var __nativeStack:Array<String>;	@:noCompletion @:ifFeature("haxe.Exception.get_stack") var __skipStack:Int = 0;	@:noCompletion var __nativeException:Any;	@:noCompletion var __previousException:Null<Exception>;	static function caught(value:Any):Exception {		if(Std.isOfType(value, Exception)) {			return value;		} else {			return new ValueException(value, null, value);		}	}	static function thrown(value:Any):Any {		if(Std.isOfType(value, Exception)) {			return (value:Exception).native;		} else {			var e = new ValueException(value);			e.__shiftStack();			return e;		}	}	public function new(message:String, ?previous:Exception, ?native:Any) {		__exceptionMessage = message;		__previousException = previous;		if(native != null) {			__nativeException = native;			__nativeStack = NativeStackTrace.exceptionStack();		} else {			__nativeException = this;			__nativeStack = NativeStackTrace.callStack();			__skipStack = 1;		}	}	function unwrap():Any {		return __nativeException;	}	@:keep // required for uncaught error handling	public function toString():String {		return message;	}	public function details():String {		return inline CallStack.exceptionToString(this);	}	@:noCompletion	@:ifFeature("haxe.Exception.get_stack")	inline function __shiftStack():Void {		__skipStack++;	}	function get_message():String {		return __exceptionMessage;	}	function get_previous():Null<Exception> {		return __previousException;	}	final function get_native():Any {		return __nativeException;	}	function get_stack():CallStack {		return switch __exceptionStack {			case null:				__exceptionStack = NativeStackTrace.toHaxe(__nativeStack, __skipStack);			case s: s;		}	}}
 |