Help needed finding uncaught exception in amended SQLBooks sample

Hi all
I've been playing with the SQLBooks example and now I've got a an uncaught exception error coming up when I try press the + (add) button on the main screen.
I've changed the DB that I'm using and have created my own equivalent classes for the book object.
The app compiles with no errors or warnings and the main screen loads up (no data showing as my DB is empty).
I hit the + button to add a new 'book' and the cellForRowAtIndexPath method runs no problem (I've stepped through that) but after this there isn't anything else for me to step into and the simulator returns to the code with something about an UNCAUGHT EXCEPTION. I'm new to xcode and mac development so don't have the knowledge to debug past what I've done.
Any suggestions on where I can start?
Regards
Wayne

If you haven't noticed it, the other person who responded to your message is correct. However, the log is a little confusing and it can be difficult to sort the messages in the log into categories. You may want to type the name of your application into the search box to narrow things down a bit. Do that and then run your application and you'll see only the messages sent by it (and not by Xcode).
If you notice the stack trace in your code (it's a couple of lines long so it's tough to miss), you'll probably find the more informative message a few lines above.
Hope that helps.
D

Similar Messages

  • Please Help!! Uncaught Exception: Index 0 =0 What's going on and how do I fix this?

    I am unable to use my phone, get to my contacts, etc. This message is on the display. I can remove the battery and re-insert and it goes away, but the moment I touch any key, the message is back!! I NEED to use my phone.

    Hi and Welcome to the Community!!
    There's pretty much no diagnosing those -- they are the equivalent of the random errors in Windows for which tracing the root cause is fruitless. Basically, these are the last out in the programming code -- some event occurred for which there is no handler in the code. The fix is a code update that handles the event...but, again, knowing what the event is is pretty much impossible. So, there are a few things to try:
    Sometimes, the code simply becomes corrupt and needs to be refreshed -- just like a reboot:
    Anytime random strange behavior or sluggishness creeps in, the first thing to do is a battery pop reboot. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    If it won't boot up cleanly, then you may need to try Safe Mode:
    KB17877 How to start a BlackBerry smartphone in safe mode
    There might be an updated code set from the carrier -- check them via this portal:
     http://na.blackberry.com/eng/support/downloads/download_sites.jsp
    The toughest possible cause is a badly behaving app. To find it, there are a couple of options. One is to see if you can read the log file:
    Go to the home screen. Hold down the "alt" key and type 'lglg'. (You will not see anything while you type).This will bring up the log file. Scroll down (probably many pages) untill you see a line that says 'uncaught execption'. Click on this line. The name of the app will be in the info. Alternative methods for bringing up the logs are in this KB:
    KB05349How to enable, access, and extract the event logs on a BlackBerry smartphone
    The other method is to remove apps one at a time, waiting a while in between (I usually recommend a week), until the problem ceases...thereby discovering the offending app. Still another method is to reload the BB OS cleanly, leaving some time between adding other apps onto the BB so as to be able to determine exactly which one is the cause.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Help needed finding display port (NOT mini) to VGA adapter please!

    I bought a macbook in 2009 and urgently need a VGA adapter (female) but I don't have a mini display port! Help! I can't seem to find an adapters that suit macbooks before the mini dislay port was brought out.
    Thanks
    Kirsten

    Welcome to Apple Support Community.
    If you have an earlier MacBook 2006-early 2009, it has a mini-DVI port.
    http://store.apple.com/us/product/M9320G/A/apple-mini-dvi-to-vga-adapter
    Search for 'mini DVI to VGA adapter' online, and you will find many sources for an adapter compatible with your MacBook.

  • Help needed finding tools or terminology

    Third try due to login and post problems ...
    I'm looking for some tools to help me with some graphical layout needs,
    Part of my problem is that all the keywords an phrases I can think of to fo a Google or forum search bring up too much that I don't want.
    Any pointers to tools or terminology would be appreciated.
    I have a couple of graphical layout needs.
    One application needs to place 'widgets' of a few predefined types on a canvass, connect them with lines, set properties, and display them in different colors/apperance based upon their status. I'm sure everyone has encountered many applications which do this kind of thing. I even coded a couple in SWING myself. This time I hope someone has a toolkit which does all the basics and I can concentrate on my application needs.
    A similar need is a layout manage which allows selection of 'widgets' of various types and placement on a tree or directed, acyclic graph according to a limited set of rules (e.g., you can add a leaf or a branch to a branch, but you cannot add a branch to a leaf).
    A third variation allows construction of 'composit widgets' from a selection of basic widgets according to a set of rules (e.g., you can make a car using one engine, one body and 4 wheels).
    Any ideas of tools that may help me?
    Any suggestions of how/where to search to find any such tools?
    Thanks,
    -- Frank

    third time and no answer? he you will not get any answer. This looks like a general problem.
    but some terminology for you:
    - graphs
    - graph-algorithms
    - wrong forum
    - branches are leafs as long as they have no childs
    This is not a problem really belonging to swing. What you need is algorithms. So post in the algorithm forum.
    May it helps: MVC. You need the C and the M, swing will only be the V.
    There are a lot of tools out in the net for deploying graphs, with definable nodes, nodeproperties, different graphtypes. Just look out for them (graph, graph-layout,etc.)
    regards

  • Help needed in using exceptions

    can anyone please correct the code for me.
    i am posting the code after doing all my homework , i tried the best of me
    not able to solve the error. thanks in advance
    i would prefer a clue how to solve the error even after the clue if im not able to solve i would expect the answer and explanation.
    thanks in advance
    import java.util.*;
    public class TestExceptions
         public static void main(String[] args)
              String test = "no";
              try
                   System.out.println("Start try");
                   doRisky(test);
                   System.out.println("end try");
              catch ( ScaryException se )
                   System.out.println("Scary Exception");
              finally
                   System.out.println("end of main");
         static void doRisky(String test) throws ScaryException
              System.out.println("start risky");
              if("yes".equals(test))
                   throw new ScaryException();
              System.out.println("end risky");
              return;
    the error i use to get is as follows
    abrar-sheiks-macbook-pro:java abrarsheik$ javac TestExceptions.java
    TestExceptions.java:25: cannot resolve symbol
    symbol : class ScaryException
    location: class TestExceptions
         static void doRisky(String test) throws ScaryException
    ^
    TestExceptions.java:15: cannot resolve symbol
    symbol : class ScaryException
    location: class TestExceptions
              catch ( ScaryException se )
    ^
    TestExceptions.java:31: cannot resolve symbol
    symbol : class ScaryException
    location: class TestExceptions
                   throw new ScaryException();
    the erroe i use to get is

    An Exception is basically a class just like any other, except that it extends java.lang.Exception.
    So you either use existing ones, such as IllegalArgumentException, IllegalStateException, NullPointerException and so on, or you define your own. It seems that you wanted to define your own exception here, called ScaryException.
    Defining your own exception isn't to different from writing any other class. Just write this:
    public class ScaryException extends Exception {
    }For the most basic part that's all you need. Later on, you might want to add some more constructors, where you can pass a message and/or a cause (which will just be passed to the super constructor). And that's usually it, most exceptions don't contain any more code than that.

  • Help needed finding logical Firebird replacement.

    A friend would like to buy my Firebird 803 but I am not sure what I can find that will replace it.   I need something quiet and unobtrusive for the TV room with easy hookups.  The Firebird right now is connected to the media system via 2 cables:  HDMI and optical digital.    Ideally, I would like something that would plug into the same 2 cables.
    Anything that's big, requires a lot of wires or has lots of loud fans is not acceptable and will likely result to my gaming being relegated to the back room.  I like gaming on the big screen by the fireplace.    
    Can anyone suggest something that will fit the bill?
    Ideally, graphics benchmarks would be equivalent to the GTX 260, but anything in-between the Firebird and the 260 would be fine
    Price < $3k if possible.
    Is HP planning a second-gen Firebird?  
    Thanks very much in advance.
    Ned.

    ned23,
    The FIrebird is a fairly unique product.. in that it has the power to pull off most of the newer games with decent performance (when in SLI mode) while being very quiet.
    I have a similar configuration - but with an 802. I keep it in a lower profile entertainment center, connected to 1080p LCD via HDMI. I keep it behind closed doors which makes the liquid cooling come in very handy.
    You can certainly find PCs from HP that are more powerful with a slightly smaller case ID, but I don't think you'll find any as quiet. HP's main lilnes of new style of cases do a good job of removing heat and thus keeping the fan noise down. To me, if I had that kind of money to spend, I'd configure an e9280t from HP.shopping's Web site (or build my own)...
    The graphics cards available come with 1 HDMI and 1 DVI (so you'd have to use an adapter). On the side... you'd have to throw in two cards to get SLI back (and really get some good performance).
    Of course, Black Friday is coming up and there will probably be some new stuff coming out.
    I don't think HP can comment unnofficially about new products... sorry. As you, I like my Firebird and would like to see a new product.
    Message Edited by RasterBlaster on 11-09-2009 01:00 PM
    ... an HP employee expressing his own opinion.
    Please post rather than send me a Message. It's good for the community and I might not be able to get back quickly. - Thank you.

  • Help needed to read exception

    Hello,
    I am having problems reading an exception stack and help would be appreciated.
    Following is the exception I get:
    Apr 15, 2004 5:18:36 PM com.sun.faces.lifecycle.InvokeApplicationPhase execute
    SEVERE: #{OPCAdvancedQueryManagedBean.beanAction}: javax.faces.el.EvaluationException: java.lang.NullPointerException
    javax.faces.FacesException: #{OPCAdvancedQueryManagedBean.beanAction}: javax.faces.el.EvaluationException: java.lang.NullPointerException
    at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:78)
    at javax.faces.component.UICommand.broadcast(UICommand.java:312)
    at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:266)
    at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:380)
    at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:75)
    at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
    at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:284)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:204)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:257)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:151)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:567)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:245)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:199)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:151)
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:509)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:149)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:567)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:184)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:151)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:164)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:149)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:567)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:156)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:151)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:567)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:972)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:206)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:833)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:732)
    at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:619)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:688)
    at java.lang.Thread.run(Thread.java:536)
    Caused by: javax.faces.el.EvaluationException: java.lang.NullPointerException
    at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:130)
    at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:72)
    ... 33 more
    Caused by: java.lang.NullPointerException
    at com.sun.faces.context.SessionMap.put(ExternalContextImpl.java:555)
    at com.softwareag.estela.opc.util.OPCSessionUtil.putTResponseIntoSession(OPCSessionUtil.java:35)
    at com.softwareag.estela.opc.engine.OPCSearch.execute(OPCSearch.java:47)
    at com.softwareag.estela.opc.jsf.OPCAbstractQueryManagedBean.beanAction(OPCAbstractQueryManagedBean.java:71)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
    ... 34 more
    Apr 15, 2004 5:19:25 PM org.apache.catalina.core.StandardContext reload
    Julien.

    Hello all,
    I am definitely stuck with this annoying NullPointerException.
    I know for a fact that my response object is not null as I can print it out and a !=null test returns true. However I still get this npe exception. Some member variable of the response object must be null.
    What's more, from the exception stack, can't we say the problem comes from the managed bean?
    Can anyone help?
    Here is my code:
    public boolean execute() {
    OPCServiceLocator service_locator = OPCServiceLocator.getInstance();
    //TODO: externalize those two strings
    TXMLObjectAccessor xmlObjectAccessor = service_locator.getTXMLObjectAccessor("http://localhost/tamino/prueba_2", "ibermarcreferencec");
    TXQuery xquery = TXQuery.newInstance(opcquery.getXQuery() + footer);
    try {
    TResponse response = xmlObjectAccessor.xquery(xquery);
    List list = OPCConvertUtil.convertResponseIntoDisplayableList(response);
    if (response.hasQueryContent() && response != null) {
    System.out.println("<--within block B-->");
    OPCSessionUtil.putTResponseIntoSession(response);//error occurs here
    OPCSessionUtil.putSearchResultsIntoSession(list);
    System.out.println("<--within block E-->");
    return response.hasQueryContent();
    } catch (TXQueryException e) {
    e.printStackTrace();
    return false;
    }Julien.

  • Help needed with message: "Exception creating new Poolable object"

    In r12.1.3 EBS users occasionally instead of getting the login screen will see the following message *"Unable to generate forwarding URL. Exception: oracle.apps.fnd.common.AppsException: oracle.apps.fnd.common.PoolException: Exception creating new Poolable object"* Restarting the applications usually resolves the issue but it happens so infrequently that we've been unable to diagnose the problem or recreate the problem at will.
    Any assistance would be greatly be appreciated in diagnosing the problem.
    We've logged an SR with Oracle Support and they recommended turning on OC4J Debugging which they advised would create large log files. Since we can replicate this issue at will we would like to avoid turning on debugging and creating the large log files.

    user6035136 wrote:
    In r12.1.3 EBS users occasionally instead of getting the login screen will see the following message *"Unable to generate forwarding URL. Exception: oracle.apps.fnd.common.AppsException: oracle.apps.fnd.common.PoolException: Exception creating new Poolable object"* Restarting the applications usually resolves the issue but it happens so infrequently that we've been unable to diagnose the problem or recreate the problem at will.
    Any assistance would be greatly be appreciated in diagnosing the problem.
    We've logged an SR with Oracle Support and they recommended turning on OC4J Debugging which they advised would create large log files. Since we can replicate this issue at will we would like to avoid turning on debugging and creating the large log files.Can you find any details about the error in the application.log and Apache log files file when the issue happens?
    Do you have the patches in these docs applied?
    Connection Leak On Login [ID 1462034.1]
    Connection Leak: Find LeakedConnectionException Reported in AOLJ Database Connection Pool Test [ID 1177093.1]
    Connection Leaks From fndgfm (fndgfm.java, fndgfm.jsp, _fndgfm.java) [ID 1231393.1]
    Please also see these docs.
    Got Error "Exception: oracle.apps.fnd.common.AppsException: oracle.apps.fnd.common.PoolException: Exception creating new Poolable object" When Login EBS [ID 1485112.1]
    R12: On a cloned target the logon screen reports 'HTTP error 500 Internal server error' [ID 1335176.1]
    Upgrading From 11.510 To R121.3 and Encountered HTTP 500 Internal server [ID 1360410.1]
    Concurrent Requests (Java Based) Failing With NoClassDefFoundError 'Could not initialize class javax.crypto.SunJCE_b' [ID 1423414.1]
    Oracle.Apps.Fnd.Common.Poolexception: Not Able To Create New Database Connection [ID 1434807.1]
    Thanks,
    Hussein

  • Help needed finding old MMS topic listing mms emails for dif providers

    Ok, Im usually better at this. I meant to bookmark or at least copy and save the information provided in I believe it was a FAQ! someone had wrote up on sending MMS to different providers from the iPhone.
    It was great, had a listing of all the [email protected] type emails for sending pictures to diff providers and it worked from the iPhone. Wanted to get that info onto the phone, anyone know what Im talking about and can help point me in the right direction?

    I know this list is rather extensive and possibly overkill, but I got the following information from
    http://www.modmyiphone.com/wiki/index.php/MMSEmailAddresses
    I've cut out the foreign carriers and text-only/pager addresses... but this should suffice since you are in the United States:
    "US Based Carriers:
    Alltel = [email protected]
    AT&T = [email protected]
    Boost Mobile = [email protected]
    Cingular (AT&T) = [email protected]
    Einstein PCS = [email protected]
    Nextel = [email protected]
    Sprint = [email protected]
    T-Mobile = [email protected]
    US Cellular = [email protected]
    Verizon Wireless = [email protected]
    Virgin Mobile = [email protected]
    Or you can simply send a message to [email protected] and they will automatically detect the carrier. Teleflip is free to use. For more information: https://www.teleflip.com/blog/services/flipout/"
    PowerBook G4 15-inch (1.5GHz)   Mac OS X (10.4.10)   1024/80/APX/BT

  • Please Help - Need to convert 400 gigs of giga samples into my EXS24

    Does anybody know what would be the fastest and most efficient way to convert 400 gigs of giga file samples from my PC into my logic pro EXS24 sampler on my mac?
    I purchased chicken system's translator professional which does batch conversion, but my pc was not working well with that application. I need to find a new way of converting. I know i can convert giga samples one by one in the exs24 but with 400 gigs of giga samples, it could take days and days.
    Any ideas wold be extremely helpful.
    Thank you for your time.
    -Smooth

    CDXtract is gettin' third'ed by me.... However, u r into one heu of a conversion armageddon....
    I recently did a huge convertion of my samplecell II lib into AKAI format...
    My recommendation is to convert on the fly - meaning - convert what u have to convert when u need it.
    And make sure when doing batch convertions that the sample programs u really want to WORK like it did in the GIGA gets special attention... Lots of the conversions done by cdxtract - are indeed converted but attack - decay etc... veries from sampler to sampler although the values are the same

  • Uncaught Exception message !!! PIN21118920

    Encountered this strange problem with the message pop and hang the unit since 12-12-2009:
    Uncaught exception:
    net.rim.device.api.system
    objectGroupReadOnlyException.
    Switch off the unit, remove the SIM card and restart and problem still pesist. Call service provider Maxis, advise to visit their nearest sales and customer centre . At the centre their personnel said that I have to download via the BB desk manager. Why can't the call centre just advise to do the simple procedure rather to waste my time to travel from office to their centre. Carry out as per their advise and problem still pesist. Call again their call centre and advise to log to this website to download www.blackberry.com/Download/entry.do?code=58AE749F25EDED36F486C85FEB3F0AB Again did as advise, it needs some 7-8hour, just let the downloading process run however it got halt after 5.5hour. Just wonder what next, is it fate is not with me to have BB8900 and revert to my NokiaE71?? Please assist to get me out of this Uncaught exception

    Hello hacheyd,
    Welcome to the BlackBerry Support Community
    The following article should help regarding the "uncaught exception application net_rim_bb_addressbook" message you are receiving:
    Unable to edit or create new contacts on the BlackBerry Address Book - http://www.blackberry.com/btsc/KB31333
    We hope this helps.
    Thank you.
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • Uncaught exception message...

    uncaught exception application net_rim_bb_addressbook_app 265 is not responding
    please help...thx,
    D.

    Hello hacheyd,
    Welcome to the BlackBerry Support Community
    The following article should help regarding the "uncaught exception application net_rim_bb_addressbook" message you are receiving:
    Unable to edit or create new contacts on the BlackBerry Address Book - http://www.blackberry.com/btsc/KB31333
    We hope this helps.
    Thank you.
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • Need help to find photo's on my backup drive,since installing Mountain Lion cannot find where they are stored.The backups after ML install are greyed out except in Applications, MyFiles and Devices really welcome a hand with this please.

    I need help to find my photo's please (2500) on my backup drive.Lost them after doing a clean install of Mountan Lion I have tried to find them but had no luck.  I use Time Machine with a 1TB Western Digital usb drive. Thanking anyone in anticipation of a solution.

    -Reece,
    We only have 1 single domain, 1 domain forest, no subdomains, only alias. I had replied to the other post as well. But I am happy to paste it here in case anyone want to read it.
    So, after a few months of testing, capture and sending logs back and forth to Apple Engineers, we found out there is a setting in AD, under User Account that prevent us to log into AD from Mountain Lion. If you would go to your AD server, open up a user account properties, then go to Account tab, the "Do not require Kerberos preauthentication" option is checked. As soon as I uncheck that option, immediately I was able to log into AD on the Mac client. Apple engineers copied all my AD settings and setup a test environment on their end and match exact mine AD environment. They was able to reproduce this issue.
    The bad part about this is... our environment required the "Do not require Kerberos preauthentication" is checked in AD, in order for our users to login into some of our Unix and Linux services. Which mean that it is impossible for us to remove that check mark because most, if not all of them some way or another require to login into applications that run on Unix and Linux. Apple is working to see if they can come up with a fix. Apparently, no one has report this issue except us. I believe most of you out there don't have that check mark checked in your environment... Anyone out there have any suggestion to by pass or have a work around for this?

  • Uncaught Exceptions Index 4 = 4 - Need Help

    Hi, My 8900 got this message after reboot/ battery pull, I check the log and came up with this.
    Name: ArrayIndexOutOfBoundsException
    GUID: 9c3cd62e3320b498
    Time: Oct 08, 2010 12:01:23
    No detail message
    net_rim_bb_addressbook_app(4C3558FE)
    AddressCardModelImpl
    getAt
    0x5740
    net_rim_bb_addressbook_app(4C3558FE)
    CompressedAddressCardModel
    getAt
    0x711C
    net_rim_bb_framework_api-3(4C355157)
    SubmemberUtilities
    getFirstSubmember
    0x9381
    net_rim_bb_qm_google-6(4C6B724C)
    IMIDUtil
    containsId
    0x145C
    net_rim_bb_qm_google-6(4C6B724C)
    PackageManager
    registerOnceOnInstall
    0x21B4
    net_rim_bb_qm_google-4(4C6B724C)
    ProxyEntry
    registerOnceOnSystemStart
    0x8C9F
    net_rim_bb_qm_google(4C6B724C)
    GoogleEntry
    registerOnceOnSystemStart
    0x66A3
    net_rim_bb_qm_google-4(4C6B724C)
    ProxyEntry
    registerEntry
    0x9603
    net_rim_bb_qm_google(4C6B724C)
    GoogleEntry
    main
    0x675B
    Is this error came from the installation of Google Talk?

    Hiya!
     Try taking a look at this article here, I havent found a definitive resolution to this issue yet, but hopefully this helps you.
    Kudos to sdgardne for the post
    http://supportforums.blackberry.com/t5/BlackBerry-Bold-BlackBerry-9000/Error-Msg-Uncaught-exception-...
    1). Please thank those who help you by clicking the beside the 'Reply' button.
    2). If your issue has been solved, please resolve it by marking "Accept as Solution" on the correct post!
    3). Remember to have fun! We are all in this together!
    4). Follow me on

  • Hi plZ help me to fix the error to my Blackberry 9300 Uncaught exception: java.lang.​NullPointe​rException

    ;   hi good plzz do help me to fix the error to my bb9300 i just update my bb9300 the the i see 
    error b    Uncaught exception: java.lang.NullPointerException    anyone here can help me to fix i appreciate

    I am guessing that you are not a Java developer, and it is not your application that is causing the Null Pointer Exception. 
    It sounds like you have updated the OS on your Blackberry device and one of the applications that you have installed is not coping with the upgrade.  
    If you press on an application icon and then that causes the error, then you know there is a problem with that application and so you need to report this to the developers of that application and get an updated version. 
    If this is happening when you restart your device, then it appears that one of the installed applications is failing at start up time and so it is not obvious which application.  So you need to see which of your applications doesn't appear to be providing all the functions it used to, and it would be a good guess that it is that application that is causing the problem.  Again you need to go back to the developer to get an update. 
    Let us know if that does not help.
    Also you have posted in the Java developer forum.  If this really is not your program causing the problem, then I suggest a better place to post a question relating to the 9300 is in the appropriate device forum here:
    http://supportforums.blackberry.com/t5/BlackBerry-​Curve/bd-p/Curve

Maybe you are looking for

  • Pricing procedure - Formula / Requirement

    Hello, I have a requirement for sales and distribution as follows: Condition ZXXX has the price of the material determined  by an access sequence Another condition type (YXXX) has to be reported and it´s value should be calculated as follows: YXXX =

  • Inavalid Values from Report Painter

    Hello, I want to know if that anyone faced this following problem: - Executing FC10 from period 1 to 16 I have X $ (and there are correct), but if I choose one report Z (from fsi*), I have the correct value, but just for period 1 to 12, if I extract

  • Calculate Four Week Average SellThru In RPD

    Hello All, We have a requirement to calculate the four week average sellthru dynamically in OBIEE. Basically we need to expose SellThru Average as a column in presentation layer. The calculation of this column should use the below logic. Also see bel

  • IPhoto 9.5.1 will not export edited versions of my photos.

    I cannot export edited versions of my photos (specifically cropped photos) in iPhoto 9.5.1 using Mavericks. This is driving me nuts. I've tried duplicating the photos, saving them in different formats . . . no dice. This is very annoying. Without pho

  • Trying to view 2 swf files from one html page

    http://www.human-landscaping.com/nextnow/public-list.html ON the above page at the top there is DW code to view two SWF files. See following code...only the Flash object on the left shows up. On my MACBOOK PRO it displays correctly. Just after I FTP