File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
src/main/kotlin/io/openapiprocessor/spring/processor Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright 2022 https://github.com/openapi-processor/openapi-processor-core
3+ * PDX-License-Identifier: Apache-2.0
4+ */
5+
6+ package io.openapiprocessor.spring.processor
7+
8+ class ProcessingException (ex : Exception ): RuntimeException(ex) {
9+
10+ override val message: String
11+ get() = " failed to run openapi-processor-spring!"
12+ }
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ import io.openapiprocessor.core.converter.ApiConverter
99import io.openapiprocessor.core.converter.ApiOptions
1010import io.openapiprocessor.core.converter.OptionsConverter
1111import io.openapiprocessor.core.parser.Parser
12- import io.openapiprocessor.core.writer.ProcessingException
1312import io.openapiprocessor.core.writer.WriterFactory
1413import io.openapiprocessor.core.writer.java.*
1514import io.openapiprocessor.spring.Version
You can’t perform that action at this time.
0 commit comments