001package org.w3.ldp.testsuite.exception; 002 003import java.io.PrintWriter; 004 005public class SkipClientTestException extends SkipException { 006 007 private static final long serialVersionUID = 1L; 008 009 public SkipClientTestException(String test, String skipMessage, PrintWriter skipLog) { 010 super(test, "Skipping test. This is a client requirement, not a server requirement.", skipLog); 011 } 012 013}