exception_templates 1.0.0 copy "exception_templates: ^1.0.0" to clipboard
exception_templates: ^1.0.0 copied to clipboard

Generic Dart exception and error classes. Enables throwing and catching custom exceptions based on their type argument.

Exception Templates #

Dart

Introduction #

While Dart allows programmers to throw any object, errors typically extend Error while exceptions implement Exception. The convention is that exceptions should be caught and handled while errors should lead to the termination of the program.

This library includes the generic classes:

These classes provide support for colourized console output and allow throwing custom errors and exceptions and catching exceptions based on their type argument.

Usage #

To use this library, include exception_templates as a dependency in your pubspec.yaml file.

1. Highlighting the Exception Context #

To highlight the context in which the exception/error occured use the classes ExceptionOf<T> and ErrorOf<T>. The type argument indicates that the exception occured within a method of the class T. In this case, there is no need to define class specific exceptions.

// To run this program navigate to the root of your local copy of the
// package exception_templates and type
//
// $ dart example/bin/exception_example.dart
//
// followed by enter.
import 'package:exception_templates/exception_templates.dart';

/// Returns the variable t afer some time. Used to simulate a database or
/// network connection.
Future<T> later<T>(T t) async {
  return await Future.delayed(Duration(milliseconds: 200), () => t);
}

/// Sample class
class const UserForm({
  required final String userName,
  required final DateTime dateOfBirth,
}) {
  int get age => DateTime.now().year - dateOfBirth.year;

  /// Simulates fetching user feedback.
  Future<String> fetchFeedback() async {
    final feedback = await later('We had a good time dining at the ...');
    if (age < 18) {
      throw ExceptionOf<UserForm>(
        message: 'Could not process $userName\'s feedback.',
        invalidState: 'The user is a minor with age: $age.',
        expectedState: 'Only adults are allowed to leave feedback.',
      );
    }
    return feedback;
  }
}

void main(List<String> args) async {
  final userForm = UserForm(
    userName: 'Daniel',
    dateOfBirth: DateTime(2018, 5, 25),
  );
  try {
    final userFeedback = await userForm.fetchFeedback();
    print(userFeedback);
  } on ExceptionOf<UserForm> catch (e) {
    final userFeedback = e.message;
    print('Feedback: $userFeedback\n');
  }
}

2. Highlighting the Exception Type #

To emphasise the exception type use:

The program below demonstrates how to throw an error of type ErrorOfType<LengthMismatch>.

// To run this program navigate to the root of your local copy of the
// package exception_templates and use
//
// # dart example/bin/error_example.dart
//
// followed by enter.
import 'package:exception_templates/exception_templates.dart';

// Defining error types:
class LengthMismatch extends ErrorType;

extension Subtraction on List<num> {
  /// Subtracts two numerical lists of same length.
  List<num> operator -(List<num> other) {
    if (length != other.length) {
      throw ErrorOfType<LengthMismatch>(
          message: 'Could not calculate: $this - $other.',
          invalidState: 'Length of $this does not match length of $other.',
          expectedState: 'Two operands with the same length.');
    }
    return List<num>.generate(length, (i) => this[i] - other[i]);
  }
}

void main(List<String> args) {
  final a = [1, 2];
  final b = [3, 4];
  final c = [...b, 5];
  print('b - a = ${b - a}');
  print('c - b = ${c - b}');
}

A typical output produced when running the program above is displayed below (the stack trace is not shown): Console Output

Note: Colour output can be globally enabled or disabled by setting the static variable colorOutput to ColorOutput.on or ColorOutput.off, respectively:

import 'package:exception_templates/exception_templates.dart';

/// Turning off color output, e.g. if the terminal does not support it.
void main(List<String> args) {
  ErrorOfType.colorOutput = ColorOutput.off;
  ExceptionOfType.colorOutput = ColorOutput.off;
}

Utility Functions #

The library includes the utility functions validateIdentifier and isValidIdentifier.

The function validateIdentifier throws an error of type ErrorOfType<InvalidIdentifier> if the String argument is a Dart keyword or an invalid Dart variable or function name.

Examples #

A copy of the programs shown in the section above can be found in the folder example.

Features and bugs #

Please file feature requests and bugs at the issue tracker.

9
likes
160
points
14.2k
downloads

Documentation

API reference

Publisher

verified publishersimphotonics.com

Weekly Downloads

Generic Dart exception and error classes. Enables throwing and catching custom exceptions based on their type argument.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (license)

More

Packages that depend on exception_templates