- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for ModelParseException (0.19 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/io/ModelParseException.java
* * @deprecated use {@code org.apache.maven.api.services.xml.ModelXmlFactory} instead */ @Deprecated(since = "4.0.0") public class ModelParseException extends IOException { /** * The one-based index of the line containing the error. */ private final int lineNumber; /** * The one-based index of the column containing the error.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 3.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/io/ModelReader.java
* @return The deserialized model, never {@code null}. * @throws IOException If the model could not be deserialized. * @throws ModelParseException If the input format could not be parsed. */ Model read(File input, Map<String, ?> options) throws IOException, ModelParseException; /** * Reads the model from the specified character reader. The reader will be automatically closed before the method * returns.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 3.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblemCollector.java
*/ package org.apache.maven.model.building; import java.util.EnumSet; import java.util.List; import java.util.Set; import org.apache.maven.model.Model; import org.apache.maven.model.io.ModelParseException; /** * Collects problems that are encountered during model building. The primary purpose of this component is to account for
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 5.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/io/DefaultModelReader.java
} else { return new MavenXpp3Reader().read(reader, strict); } } catch (XmlPullParserException e) { throw new ModelParseException(e.getMessage(), e.getLineNumber(), e.getColumnNumber(), e); } }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 3.4K bytes - Viewed (0)