Custom short sleeve T-Shirts for men makes a perfect and timeless gift. Its round neck and classic cut will sublimate any of your outfits.
<?php
class WebDeveloper extends Programmer
{
protected $experience;
protected $skills;
public function __construct($microsoftLover=false)
{
if($microsoftLover)
{
return new Exception("Something is wrong!!!",500);
}
}
public function setExperience($years)
{
$this->experience=$years;
}
public function setSkills($skills)
{
$this->skills=$skills;
}
public function need()
{
return "Coffee";
}
public function isAvailable()
{
return new Exception('Is not available now!',404);
}
}