Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • producer-consumer
  • gitlab-ci
3 results

maingui.cpp

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    TimedOutCommandException.php 470 B
    <?php
    
    namespace UnicaenShell\Command\Exception;
    
    use Exception;
    
    class TimedOutCommandException extends Exception
    {
        private $timeout;
    
        /**
         * @param string $userFirendlyTimeout
         * @return $this
         */
        public function setTimeout($userFirendlyTimeout)
        {
            $this->timeout = $userFirendlyTimeout;
    
            return $this;
        }
    
        /**
         * @return string
         */
        public function getTimeout()
        {
            return $this->timeout;
        }
    }