keecode logokeecode
10

Runtime Failure

Internal JavaScript runtime failure

Node.js

Exit Code Information

Exit Code

10

Name

Runtime Failure

Category

Node.js

Usage Context

Bootstrap function failed

Common Usage

Bash Script

#!/bin/bash

if [ condition ]; then
  echo "Runtime Failure"
  exit 10
fi

Check Exit Code

./script.sh
echo $?  # Prints the exit code

# Check if exit code matches
if [ $? -eq 10 ]; then
  echo "Runtime Failure"
fi

Node.js/JavaScript

// Exit with code 10
process.exit(10);

// Or throw error that results in exit code
if (error) {
  console.error('Runtime Failure');
  process.exit(10);
}

Python

import sys

# Exit with code 10
if error:
    print("Runtime Failure")
    sys.exit(10)