0001    //
0002    //  Error.swift
0003    //  Kunugi
0004    //
0005    //  Created by ito on 1/3/16.
0006    //  Copyright © 2016 Yusuke Ito. All rights reserved.
0007    //
0008    
0009    public enum MiddlewareError
Context.swift:32
        throw MiddlewareError.NoContextType("\(T.self)")
Context.swift:37
                throw MiddlewareError.AlreadyHasContextType("\(c.dynamicType)")
: ErrorType { 0010 case NoContextType
Context.swift:32
        throw MiddlewareError.NoContextType("\(T.self)")
(String) 0011 case AlreadyHasContextType
Context.swift:37
                throw MiddlewareError.AlreadyHasContextType("\(c.dynamicType)")
(String) 0012 } 0013