(Class<?> type)
| 198 | } |
| 199 | |
| 200 | private static IllegalStateException missing(Class<?> type) { |
| 201 | return new IllegalStateException("No mapper registered for " |
| 202 | + type.getName() + ". Add @Mapped and ensure the cn1:process-annotations " |
| 203 | + "Mojo ran during build, then re-run -- the generated MapperBootstrap " |
| 204 | + "populates this registry at startup."); |
| 205 | } |
| 206 | |
| 207 | // --------------------------------------------------------------- |
| 208 | // Tiny JSON writer |