October 2012
Beginner to intermediate
500 pages
10h 29m
English
![]()
We will begin our framework by looking at some foundational (OOP-focused) code on which the core components will be based. The first thing we will look at is how to execute code that is spread over multiple files. We will also look at what to do when we encounter errors. Finally, we will create a convenient means of sorting and retrieving class metadata.
- We need to develop a means to load classes automatically. Classes should be located based on their names, and these names should translate into a folder hierarchy.
- We need to understand and define custom
Exceptionsubclasses, so that we can handle the most common ...