Sign in

devs / chromedia-snippets · Files

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • chromedia-snippets
  • Symfony3
  • NexmoBundle
  • Exception
  • NexmoException.php
  • Sample snippets
    112ccc18
    Allejo Chris Velarde authored
    2020-12-01 18:05:21 +0800  
    Browse Directory »
NexmoException.php 212 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
<?php

namespace NexmoBundle\Exception;

class NexmoException extends \Exception
{
    public static function invalidPrivateKeyPath()
    {
        return new self("Invalid path for Nexmo private key.");
    }
}