001package org.w3.ldp.testsuite.exception;
002
003import java.io.PrintWriter;
004
005public class SkipNotTestableException extends SkipException {
006
007        private static final long serialVersionUID = 1L;
008
009        public SkipNotTestableException(String test, PrintWriter skipLog) {
010                super(test, "This requirement or recommendation must be tested manually. It is difficult or impossible to write automated tests for and is not part of the testsuite.", skipLog);
011        }
012
013}