Documentation ¶
Overview ¶
Package errs -- エラーについてのサンプルが配置されているパッケージです。
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrSentinel -- sentinel error check ErrSentinel = errors.New("example: sentinel error check") )
Functions ¶
func NewRegister ¶
NewRegister -- このパッケージ用のサンプルを登録する mapping.Register を生成します。
func Sentinel ¶
func Sentinel() error
Sentinel は、Goにおけるエラー処理イディオムの sentinel error check についてのサンプルです. REFERENCES::
func TypeAssertion ¶
func TypeAssertion() error
TypeAssertion は、Goにおけるエラー処理イディオムの type assertion check についてのサンプルです. REFERENCES::
func WrapAndUnwrap ¶
func WrapAndUnwrap() error
WrapAndUnwrap は、Goにおけるエラー処理にてエラーを内包するやり方についてのサンプルです。 REFERENCES::
Types ¶
type TypeAssertionError ¶
type TypeAssertionError struct{}
TypeAssertionError -- type assertion check
func (*TypeAssertionError) Error ¶
func (t *TypeAssertionError) Error() string
Click to show internal directories.
Click to hide internal directories.