Cambo Freelance
ទំព័រដើមសេវាកម្មអត្ថបទការបង្រៀនក្រុមវគ្គបណ្តុះបណ្តាលទំនាក់ទំនង
Cambo Freelance

Professional freelance team from Cambodia delivering technology-driven solutions with cultural insight and modern expertise.

ផ្ញើសាររបស់អ្នក

ត្រៀមចាប់ផ្តើមគម្រោងរបស់អ្នក? ទំនាក់ទំនងក្រុមរបស់យើង។

ទំនាក់ទំនង

សេវាកម្ម

  • Web & Mobile Development Services
  • Graphic Design & Branding Services

តំណភ្ជាប់មានប្រយោជន៍

  • ទំព័រដើម
  • សេវាកម្ម
  • ការសិក្សា
  • អំពីយើង
  • ទំនាក់ទំនង
  • តម្លៃ

© 2026 Cambo Freelance. រក្សាសិទ្ធិទាំងអស់។

TelegramFacebookLinkedInEmail
HomeTutorialsDartCustom Exceptions in Dart
🎯Dart Tutorials

97 lessons

Beginner(35)0Complete Dart Tutorial Series — Course Index1Introduction to Dart2Installing Dart SDK3Setting Up VS Code for Dart4DartPad Online Editor5Hello World in Dart6Dart Syntax7Comments in Dart8Variables in Dart9Data Types in Dart10Strings in Dart11Numbers in Dart12Booleans in Dart13Type Conversion in Dart14Constants in Dart: final and const15User Input in Dart16Arithmetic Operators in Dart17Assignment Operators in Dart18Comparison Operators in Dart19Logical Operators in Dart20Null-Aware Operators in Dart21If Statement in Dart22If Else in Dart23Else If in Dart25Switch Statement in Dart26Ternary Operator in Dart27For Loop in Dart28While Loop in Dart29Do While Loop in Dart30Break and Continue in Dart32Nested Loops in Dart33Functions in Dart35Optional Parameters in Dart37Arrow Functions in Dart38Recursive Functions in Dart
Intermediate(34)39Lists in Dart40Sets in Dart41Maps in Dart42Collection Operations in Dart
Advanced(28)73Futures in Dart74Async and Await in Dart75Streams in Dart76
🎯

Dart Tutorials

Lesson 66 of 97

All lessons
Beginner (35)0Complete Dart Tutorial Series — Course Index1Introduction to Dart
43
Spread Operator and Collection Literals in Dart
44Collection If in Dart
45Collection For in Dart
46Null Safety in Dart
47Nullable Variables in Dart
48Null Assertion Operator in Dart
49Late Keyword in Dart
50Required Keyword in Dart
51Classes and Objects in Dart
52Constructors in Dart
53Getters and Setters in Dart
54Static Members in Dart
55Interfaces in Dart
56Polymorphism in Dart
57Inheritance in Dart
58Method Overriding in Dart
59Abstract Classes in Dart
60Abstract Classes vs Interfaces in Dart
61Mixins in Dart
62Extension Methods in Dart
63Exception Handling in Dart
64Try-Catch in Dart
65Finally Block in Dart
66Custom Exceptions in Dart
67Generics in Dart
68Typedef in Dart
69Enums in Dart
70Records in Dart
71Pattern Matching in Dart
72Cascade Notation in Dart
Stream Controllers in Dart
77Isolates in Dart
78File Operations in Dart
80JSON Parsing in Dart
82HTTP Requests in Dart
83REST API Client in Dart
84Dart Packages and pub.dev
85Testing in Dart
86Dart CLI Applications
87Dart Code Style and Best Practices
88Server-side Dart with Shelf
89Introduction to Flutter
90Flutter Widgets and Layouts
91Flutter State Management
92Flutter Navigation and Routing
93Project: Calculator in Dart
94Project: Temperature Converter in Dart
95Project: Age Calculator in Dart
96Project: Todo CLI App in Dart
97Project: Student Management System in Dart
98Project: Expense Tracker in Dart
100Project: Banking System in Dart
101Project: Inventory Management System in Dart
102Project: Contact Manager in Dart
103Project: Mini REST API Backend in Dart
2
Installing Dart SDK
3Setting Up VS Code for Dart
4DartPad Online Editor
5Hello World in Dart
6Dart Syntax
7Comments in Dart
8Variables in Dart
9Data Types in Dart
10Strings in Dart
11Numbers in Dart
12Booleans in Dart
13Type Conversion in Dart
14Constants in Dart: final and const
15User Input in Dart
16Arithmetic Operators in Dart
17Assignment Operators in Dart
18Comparison Operators in Dart
19Logical Operators in Dart
20Null-Aware Operators in Dart
21If Statement in Dart
22If Else in Dart
23Else If in Dart
25Switch Statement in Dart
26Ternary Operator in Dart
27For Loop in Dart
28While Loop in Dart
29Do While Loop in Dart
30Break and Continue in Dart
32Nested Loops in Dart
33Functions in Dart
35Optional Parameters in Dart
37Arrow Functions in Dart
38Recursive Functions in Dart
Intermediate (34)39Lists in Dart40Sets in Dart41Maps in Dart42Collection Operations in Dart43Spread Operator and Collection Literals in Dart44Collection If in Dart45Collection For in Dart46Null Safety in Dart47Nullable Variables in Dart48Null Assertion Operator in Dart49Late Keyword in Dart50Required Keyword in Dart51Classes and Objects in Dart52Constructors in Dart53Getters and Setters in Dart54Static Members in Dart55Interfaces in Dart56Polymorphism in Dart57Inheritance in Dart58Method Overriding in Dart59Abstract Classes in Dart60Abstract Classes vs Interfaces in Dart61Mixins in Dart62Extension Methods in Dart63Exception Handling in Dart64Try-Catch in Dart65Finally Block in Dart66Custom Exceptions in Dart67Generics in Dart68Typedef in Dart69Enums in Dart70Records in Dart71Pattern Matching in Dart72Cascade Notation in Dart
Advanced (28)73Futures in Dart74Async and Await in Dart75Streams in Dart76Stream Controllers in Dart77Isolates in Dart78File Operations in Dart80JSON Parsing in Dart82HTTP Requests in Dart83REST API Client in Dart84Dart Packages and pub.dev85Testing in Dart86Dart CLI Applications87Dart Code Style and Best Practices88Server-side Dart with Shelf89Introduction to Flutter90Flutter Widgets and Layouts91Flutter State Management92Flutter Navigation and Routing93Project: Calculator in Dart94Project: Temperature Converter in Dart95Project: Age Calculator in Dart96Project: Todo CLI App in Dart97Project: Student Management System in Dart98Project: Expense Tracker in Dart100Project: Banking System in Dart101Project: Inventory Management System in Dart102Project: Contact Manager in Dart103Project: Mini REST API Backend in Dart
🎯DartIntermediateLesson 66 of 97Dart TeamJune 19, 2026

Custom Exceptions in Dart

Build custom exceptions in Dart — implement the Exception interface, create exception hierarchies with extends, and use factory constructors for clean error APIs.


📚 Table of Contents

  1. Why Custom Exceptions?
  2. Creating Custom Exceptions
  3. Exception Hierarchy
  4. Full Example
  5. Quiz
  6. Summary

Why Custom Exceptions?

Dart's built-in exceptions (FormatException, RangeError, etc.) cover common cases, but domain-specific errors need custom exception classes to communicate meaningful context. A PaymentDeclinedException is far more informative than a generic Exception.

Creating Custom Exceptions

// Simplest form — implement Exception interface
class ValidationException implements Exception {
  final String field;
  final String message;
  ValidationException(this.field, this.message);

  @override
  String toString() => 'ValidationException[$field]: $message';
}

// With a factory constructor
class ApiException implements Exception {
  final int statusCode;
  final String message;
  final Map<String, dynamic>? details;

  const ApiException(this.statusCode, this.message, {this.details});

  factory ApiException.notFound(String resource) =>
      ApiException(404, '$resource not found');

  factory ApiException.unauthorized() =>
      ApiException(401, 'Authentication required');

  factory ApiException.serverError([String? detail]) =>
      ApiException(500, 'Internal server error', details: {'detail': detail});

  bool get isClientError => statusCode >= 400 && statusCode < 500;
  bool get isServerError => statusCode >= 500;

  @override
  String toString() => 'ApiException($statusCode): $message';
}

Exception Hierarchy

class AppException implements Exception {
  final String message;
  final String? code;
  AppException(this.message, {this.code});
  @override String toString() => code != null
      ? '[$code] $message' : message;
}

class AuthException extends AppException {
  AuthException(String msg) : super(msg, code: 'AUTH_ERROR');
}

class NetworkException extends AppException {
  final int statusCode;
  NetworkException(String msg, this.statusCode)
      : super(msg, code: 'NET_$statusCode');
}

class DatabaseException extends AppException {
  DatabaseException(String msg) : super(msg, code: 'DB_ERROR');
}

Full Example

class UserService {
  final Map<String, String> _users = {'alice': 'pass123'};

  String login(String username, String password) {
    if (username.isEmpty) throw ValidationException('username', 'Cannot be empty');
    if (password.length < 6) throw ValidationException('password', 'Min 6 chars');
    if (!_users.containsKey(username)) throw ApiException.notFound('User');
    if (_users[username] != password) throw AuthException('Invalid password');
    return 'token_$${username}_$${DateTime.now().millisecondsSinceEpoch}';
  }
}

void main() {
  var service = UserService();
  final tests = [
    ('', 'pass123'),
    ('alice', 'abc'),
    ('bob', 'pass123'),
    ('alice', 'wrong'),
    ('alice', 'pass123'),
  ];

  for (var (user, pass) in tests) {
    try {
      var token = service.login(user, pass);
      print('Login success: $token');
    } on ValidationException catch (e) {
      print('Validation: $e');
    } on ApiException catch (e) {
      print('API: $e');
    } on AuthException catch (e) {
      print('Auth: $e');
    }
  }
}
Output:
Validation: ValidationException[username]: Cannot be empty
Validation: ValidationException[password]: Min 6 chars
API: ApiException(404): User not found
Auth: [AUTH_ERROR] Invalid password
Login success: token_alice_...

🧠 Quiz

1. How do you create a custom exception in Dart?

  • A) extends Exception
  • B) implements Exception ✅
  • C) mixin Exception
  • D) abstract class Exception

2. What is the benefit of an exception hierarchy?

  • A) Makes code run faster
  • B) Allows catching at different granularity levels ✅
  • C) Removes the need for try-catch
  • D) Enforces compile-time error checking

Summary

Create custom exceptions by implementing the Exception interface. Override toString() for meaningful messages. Use factory constructors for common error scenarios. Build exception hierarchies with extends so callers can catch at the right level of specificity.

dartprogrammingintermediateexceptions
PreviousLesson 65: Finally Block in DartNextLesson 67: Generics in Dart
Back to All Tutorials