Class NestedTransactionRollbackException
        
    Namespace: Cake\Database\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|array $message = null, int $code = 500, Exception|null $previous = null)
      Constructor
Allows you to create exceptions that are treated as framework errors and disabled when debug = 0.
Parameters
- 
                
string|array$message optional If no message is given a default meesage will be used.
- 
                
int$code optional Status code, defaults to 500.
- 
                
Exception|null$previous optional the previous exception.
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