Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

runtimeexception(3) [php man page]

RUNTIMEEXCEPTION(3)							 1						       RUNTIMEEXCEPTION(3)

The RuntimeException class

INTRODUCTION
Exception thrown if an error which can only be found on runtime occurs. CLASS SYNOPSIS
RuntimeException RuntimeExceptionextends Exception Inherited properties o protected string$message o protected int$code o protected string$file o protected int$line Inherited methods o finalpublic string Exception::getMessage (void ) o finalpublic Exception Exception::getPrevious (void ) o finalpublic mixed Exception::getCode (void ) o finalpublic string Exception::getFile (void ) o finalpublic int Exception::getLine (void ) o finalpublic array Exception::getTrace (void ) o finalpublic string Exception::getTraceAsString (void ) o public string Exception::__toString (void ) o finalprivate void Exception::__clone (void ) PHP Documentation Group RUNTIMEEXCEPTION(3)

Check Out this Related Man Page

OAUTHPROVIDER(3)							 1							  OAUTHPROVIDER(3)

The OAuthProvider class

INTRODUCTION
Manages an OAuth provider class. See also an external in-depth tutorial titled Writing an OAuth Provider Service, which takes a hands-on approach to providing this ser- vice. There are also OAuth provider examples within the OAuth extensions sources. CLASS SYNOPSIS
OAuthProvider OAuthProvider Methods o finalpublic bool OAuthProvider::addRequiredParameter (string $req_params) o public void OAuthProvider::callconsumerHandler (void ) o public void OAuthProvider::callTimestampNonceHandler (void ) o public void OAuthProvider::calltokenHandler (void ) o public void OAuthProvider::checkOAuthRequest ([string $uri], [string $method]) o public OAuthProvider::__construct ([array $params_array]) o public void OAuthProvider::consumerHandler (callable $callback_function) o finalpublicstatic string OAuthProvider::generateToken (int $size, [bool $strong = false]) o public void OAuthProvider::is2LeggedEndpoint (mixed $params_array) o public void OAuthProvider::isRequestTokenEndpoint (bool $will_issue_request_token) o finalpublic bool OAuthProvider::removeRequiredParameter (string $req_params) o finalpublicstatic string OAuthProvider::reportProblem (string $oauthexception, [bool $send_headers = true]) o finalpublic bool OAuthProvider::setParam (string $param_key, [mixed $param_val]) o finalpublic bool OAuthProvider::setRequestTokenPath (string $path) o public void OAuthProvider::timestampNonceHandler (callable $callback_function) o public void OAuthProvider::tokenHandler (callable $callback_function) PHP Documentation Group OAUTHPROVIDER(3)
Man Page

7 More Discussions You Might Find Interesting

1. Ubuntu

Trouble setting up Java classpath

Saw an error while setting up an application called i2phex: # ./run.sh java.lang.RuntimeException: Failed to initialize phex.net.repres.i2p.I2PPresentationManager at phex.common.ManagerController.initializeManagers(ManagerController.java:78) at phex.Main.main(Main.java:161)After... (0 Replies)
Discussion started by: Israel213
0 Replies

2. Shell Programming and Scripting

Redirection after prepending timestamp

Hi all, I have little experience with Scripting so hoping someone may be able to help me or point me in the right direction. I have a shell script which was outputting uncaught exceptions to a log file. $JAVA_MAIN_CLASS > $LOGNAME 2>&1 What I want to be able to do is prepend a timestamp on... (8 Replies)
Discussion started by: MacAonghusa
8 Replies

3. UNIX for Advanced & Expert Users

Datastage Installation Problem

HI, I am trying to install IBM infosphere Datastage on my machine. which is # uname -a Linux "hostname" 2.6.18-238.el5 #1 SMP Sun Dec 19 14:22:44 EST 2010 x86_64 x86_64 x86_64 GNU/Linux AS per the IBM DOC, we need to install the WAS (Websphere Administration Server ) and then proceed... (4 Replies)
Discussion started by: amarn48
4 Replies

4. Shell Programming and Scripting

Search patterns in multiple logs parallelly.

Hi All, I am starting a service which will redirect its out put into 2 logs say A and B. Now for succesful startup of the service i need to search pattern1 in log A and pattern2 in log B which are writen continuosly. Now my requirement is to find the patterns in the increasing logs A and B... (19 Replies)
Discussion started by: Girish19
19 Replies

5. Shell Programming and Scripting

Collecting logs between two time stamps

Hi, please help me to collect the entire log files between two time stamp. for example, I am looking script to collect the entire log between "2015-03-27 15:59" to "2015-03-27 16:15" in the below sample log file. OS : RHEL 6.3 Date/Time : 24 hours format, the time is printing each log... (12 Replies)
Discussion started by: jerryknj
12 Replies

6. Programming

Java HTTP PUT Request/JSON Not Working But Using Python It Does ?

I have some code that I have been playing around with learning Java: import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStream; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.URL; ... (1 Reply)
Discussion started by: metallica1973
1 Replies

7. Shell Programming and Scripting

Maintaining file structure

Hi guys, I am trying to store some output in a file and then compare it to another file. I am gathering information from 2 commands: cat /opt/jbin/server.log.tmp > A grep "ephemeral" /opt/jbin/log/server.log.2015-05-02-18 > B The contents of both file are the same. This means if I do a... (3 Replies)
Discussion started by: Junaid Subhani
3 Replies