public function getError()
 {
     $error = "ERRO DE ENVIO DE ARQUIVO: ";
     switch ($this->error) {
         case 4:
             $error .= "Este tipo de arquivo (" . $this->getExt($this->name) . ") não permite redimensionamento";
             break;
         default:
             return parent::getError();
     }
     return $error;
 }