(modelName, methodName)
| 68 | */ |
| 69 | |
| 70 | function throwNotAttached(modelName, methodName) { |
| 71 | throw new Error( |
| 72 | g.f('Cannot call %s.%s().' + |
| 73 | ' The %s method has not been setup.' + |
| 74 | ' The {{PersistedModel}} has not been correctly attached to a {{DataSource}}!', |
| 75 | modelName, methodName, methodName), |
| 76 | ); |
| 77 | } |
| 78 | |
| 79 | /*! |
| 80 | * Convert null callbacks to 404 error objects. |
no outgoing calls
no test coverage detected
searching dependent graphs…