1ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultzpackage com.xtremelabs.robolectric.shadows;
2ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultz
3ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultzimport org.apache.http.ProtocolVersion;
4ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultzimport org.apache.http.StatusLine;
5ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultz
6ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultzpublic class StatusLineStub implements StatusLine {
7ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultz    @Override public ProtocolVersion getProtocolVersion() {
8ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultz        throw new UnsupportedOperationException();
9ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultz    }
10ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultz
11ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultz    @Override public int getStatusCode() {
12ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultz        throw new UnsupportedOperationException();
13ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultz    }
14ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultz
15ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultz    @Override public String getReasonPhrase() {
16ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultz        throw new UnsupportedOperationException();
17ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultz    }
18ef4c3185d16eed7528b6f31c23e7009f3e0a6cf2Phil Goodwin & Tyler Schultz}
19