Class NotAcceptableException
Represents an HTTP 406 error.
        
    Namespace: Cake\Network\Exception
    
    
    
      
  
      Property Summary
- 
        $_attributes protected
arrayArray of attributes that are passed in from the constructor, and made available in the view when a development error is displayed.
 - 
        $_messageTemplate protected
stringTemplate string that has attributes sprintf()'ed into it.
 - 
        $_responseHeaders protected
array|nullArray of headers to be passed to Cake\Http\Response::header()
 
Method Summary
- 
          
__construct() public
Constructor
 - 
          
getAttributes() public
Get the passed in attributes
 - 
          
responseHeader() public
Get/set the response header to be used
 
Method Detail
__construct() ¶ public
__construct(string|null $message = null, int $code = 406)
      Constructor
Parameters
- 
                
string|null$message optional If no message is given 'Not Acceptable' will be the message
- 
                
int$code optional Status code, defaults to 406
responseHeader() ¶ public
responseHeader(string|array|null $header = null, string|null $value = null): array
      Get/set the response header to be used
See also Cake\Http\Response::header()
Parameters
- 
                
string|array|null$header optional An array of header strings or a single header string
- an associative array of "header name" => "header value"
 - an array of string headers is also accepted
 
- 
                
string|null$value optional The header value.
Returns
array