source: sandbox/2.4.1-3/prototype/rest/hypermedia/error.php @ 6351

Revision 6351, 516 bytes checked in by gustavo, 12 years ago (diff)

Ticket #2768 - Melhorias na inserção de destinatários na criacao de mensagem

  • Property svn:executable set to *
Line 
1<?php
2
3class Error {
4
5    public $code;
6    public $description;
7    public $title;
8
9    public function setCode($code) {
10        $this->code = $code;
11    }
12
13    public function setDescription($description) {
14        $this->description = $description;
15    }
16
17    public function setTitle($title) {
18        $this->title = $title;
19    }
20
21    public function getCode() {
22        return $this->code;
23    }
24
25    public function getDescription() {
26        return $this->description;
27    }
28
29    public function getTitle() {
30        return $this->title;
31    }
32
33}
34
35?>
Note: See TracBrowser for help on using the repository browser.