Jump to content

[PHP5] Exceptions error


Drezard

Recommended Posts

This exception class is throwing all of the exception array information onto the page before the meta refresh takes over.

<?php
class ExceptionMysql extends Exception {

    	protected $file;
    	protected $line;
        protected $message;
    	protected $code;
    	
    	public function __construct($message=false, $code=false) {
    		$this->file = $this->getFile();
    		$this->line = $this->getLine();
    		$this->message = $this->getMessage();
    		$this->code = $this->getCode();
    		
    		// code to add error to a log
    		echo "<meta http-equiv='refresh' content='0;error.php' />";
    	}
    
    }
?>

 

Whats wrong? What do I do?

 

Daniel

Link to comment
Share on other sites

These methods are designed to print data to the screen

$this->getMessage();

$this->getCode();

 

etc..

 

Take a look at the class construct: http://uk2.php.net/manual/en/class.exception.php

 

You do not need to store $this->message as it is already set in the Exception class

You can access it directly with $this->message in your inherited class.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.