add error handling file

This commit is contained in:
梁杰
2015-06-27 21:22:38 +08:00
parent 34949314da
commit 13eef04014
8 changed files with 795 additions and 792 deletions

View File

@ -22,13 +22,14 @@
* [析构过程](chapter2/15_Deinitialization.md)
* [自动引用计数](chapter2/16_Automatic_Reference_Counting.md)
* [可选链](chapter2/17_Optional_Chaining.md)
* [类型转换](chapter2/18_Type_Casting.md)
* [嵌套类型](chapter2/19_Nested_Types.md)
* [扩展](chapter2/20_Extensions.md)
* [协议](chapter2/21_Protocols.md)
* [泛型](chapter2/22_Generics.md)
* [权限控制](chapter2/23_Access_Control.md)
* [高级操作符](chapter2/24_Advanced_Operators.md)
* [错误处理](chapter2/18_Error_Handling.md)
* [类型转换](chapter2/19_Type_Casting.md)
* [嵌套类型](chapter2/20_Nested_Types.md)
* [扩展](chapter2/21_Extensions.md)
* [协议](chapter2/22_Protocols.md)
* [泛型](chapter2/23_Generics.md)
* [权限控制](chapter2/24_Access_Control.md)
* [高级操作符](chapter2/25_Advanced_Operators.md)
* [语言参考](chapter3/chapter3.md)
* [关于语言参考](chapter3/01_About_the_Language_Reference.md)
* [词法结构](chapter3/02_Lexical_Structure.md)

View File

@ -0,0 +1,2 @@
# 错误处理
-----------------

View File

View File

View File