Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UnexpectedRequestException (0.37 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/UnexpectedRequestException.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.server.http;
    
    public class UnexpectedRequestException extends RuntimeException {
        public UnexpectedRequestException(String message) {
            super(message, null);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 825 bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/UnexpectedRequestFailure.java

        public UnexpectedRequestFailure(String method, String path) {
            this(method, path, "");
        }
    
        public UnexpectedRequestFailure(String method, String path, String context) {
            super(new UnexpectedRequestException(String.format("Unexpected request %s %s received%s", method, withLeadingSlash(path), contextSuffix(context))));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top