Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for onMessage (0.15 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/StaxLocation.java

            String message = e.getMessage();
            if (e instanceof XMLStreamException xe && xe.getLocation() != null) {
                int idx = message.indexOf("\nMessage: ");
                if (idx >= 0) {
                    return message.substring(idx + "\nMessage: ".length());
                }
            }
            return message;
        }
    
        public StaxLocation(javax.xml.stream.Location location) {
            this.location = location;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2.3K bytes
    - Viewed (0)
Back to top