1<?php
2
3final class ArcanistConduitAuthenticationException
4  extends Exception {
5
6  private $title;
7  private $body;
8
9  public function setTitle($title) {
10    $this->title = $title;
11    return $this;
12  }
13
14  public function getTitle() {
15    return $this->title;
16  }
17
18  public function setBody($body) {
19    $this->body = $body;
20    return $this;
21  }
22
23  public function getBody() {
24    return $this->body;
25  }
26
27}
28