problem in my exception

error
Too many objects match the [mel primary key, test] oracle.jbo.Key all make mistakes.

so I followed in this thread.

ADF 11 g: exception handling problem


package com.rits.glm.model.errbundles;


import java.util.ArrayList;
import java.util.List;
Import oracle.adf.model.binding.DCBindingContainer;
Import oracle.adf.model.binding.DCErrorHandlerImpl;
Import oracle.jbo.CSMessageBundle;
Import oracle.jbo.DMLConstraintException;
Import oracle.jbo.JboException;


Import weblogic.management.jmx.ExceptionMapper;


SerializableAttribute public class Glcustomerrorhandler extends DCErrorHandlerImpl {}


List < ExceptionMapper > exceptionMapperList = new ArrayList < ExceptionMapper > ();

public Glcustomerrorhandler()
{
This (true);
}
public Glcustomerrorhandler (boolean setToThrow)
{
Super (setToThrow);
exceptionMapperList.add (new DisableJboExceptionCodesMapper());
}
' public Sub reportException (DCBindingContainer bc, Exception ex)
{
for (ExceptionMapper Mapper: exceptionMapperList)
{
If (map. + canMapException (ex) +) {}
ex = map + .mapException (ex); +
}
}
super.reportException (bc, ex);
}
}



It is the thing. in my java file highlighted display the error.


Error (28,32): could not find the class DisableJboExceptionCodesMapper
Error (34,13): could not find canMapException (java.lang.Exception) method
Error (35,17): could not find mapException (java.lang.Exception) method


I think so. some my library is missing. and I dono were am go wrong

Kaim,

The error that you are referring to (too many objects match the primary key) is an error of Houston-xxxxx (Houston-25013, if I'm not mistaken). According to the documentation, you can use a message packet to provide your own error message for Houston-25013; have you read?

John

Tags: Java

Similar Questions

  • Windows sidebar calendar problem, sees nothing except chassis. How can I solve?

    Windows sidebar calendar problem, sees nothing except chassis. How can I solve?

    Hello SEEN H K,

    1. this work was very well at any time before your computer?

    I suggest that you try the methods below to resolve this issue:

    Method 1:

    Open a windows Explorer window and then paste the following text in the address bar:

    %LocalAppData%\microsoft\Windows sidebar

    This will open the Sidebar gadgets folder, where you should see a file named Settings.ini.

    If this is due to recent changes to the computer, I suggest that you do a system restore on your computer.

    a. Click Start, type system restore in the search box and then in the list click on the system restore program.

    b. If you are prompted for an administrator password or a confirmation, type your password or click on continue.

    (c) in the System Restore dialog box, click on choose a different restore point and then click Next.

    d. in the list of restore points, click a restore point created before you started having the problem, and then click Next.

    e. click Finish.

    You can see the following article for reference:

    http://Windows.Microsoft.com/en-us/Windows-Vista/system-restore-frequently-asked-questions

    Thank you
    Irfan H, Engineer Support Microsoft Answers.

  • Description of the problem: ORA-07445: exception encountered: core dump [(drexumcx)

    Hello

    I would like to know which solution option, I want to continue:

    1. unreleased the fix for Bug 5160122 'TEXT QUERY IMPASSE WITH GATHER_STATS_JOB, THEN COREDUMP ORA-7445 [DREXUMCX]' are included in
    Oracle RDBMS 11.1.0 and newer. In Oracle RDBMS 11.1.0 and newer, this problem is no longer.

    OR

    2 new the fix for Bug 5160122 'TEXT QUERY IMPASSE WITH GATHER_STATS_JOB, THEN COREDUMP ORA-7445 [DREXUMCX]' are included in
    Oracle RDBMS 10.2.0.5.0. With the 10.2.0.5.0 group of hotfixes installed, it is no longer a problem.

    OR

    3. with the fix for new Bug 5160122 ' TEXT QUERY DEADLOCK WITH GATHER_STATS_JOB, THEN COREDUMP ORA-7445 [DREXUMCX] ' installed
    against 10.2.0.4.0 on Linux x 86-64, is more problem.

    Kind regards.
    Prasad

    Description of the problem: ORA-07445: exception encountered: core dump [(drexumcx)

    stop multi - DISPLAY same problem

  • Problem: An unhandled exception has occurred in your application.

    Hey,.

    I recently bought FIFA 15. I downloaded it with original and when I tried to start the game, it gave me this error:

    "An unhandled exception has occurred in your application. If you click on continue, the application will ignore this error and attempt to continue. If you click on exit, the application closes immediately. Object reference not set to an instance of an object. »

    I read other messages, but one of the solutions: Download this: http://www.microsoft.com/downloads/details.aspx?FamilyId=333325FD-AE52-4E35-B531-508D977D32A6&displaylang=en, still gave me problems. When I tried to download it, it gave another error: (translation from Dutch to English)

    "To use" Windows-parts en - or turn off ' If you want to install or configure Microsoft .NET Framework 3.5 ""

    I hope someone can help me, it would make me very happy to finally play some 15 FIFA :).

    Thanks in advance and sorry for my English sometimes,

    Gijs Hoogendoorn

    GH

    Since it is easports your best bet would be to contact them, they know that the best software.

  • My first problem of java exception program (helloworld)

    Hello

    I am very new to java programming for blackberry, and I read an e-book - blackberry for beginners.

    OK, for the moment... I currently have 3 files in/src /...

    HelloWorldApp.java

    package com.beginningblackberry;

    Import net.rim.device.api.ui.UiApplication;

    SerializableAttribute public class HelloWorldApp extends UiApplication {}

    public HelloWorldApp() {}
    TODO auto-generated constructor stub
    Screen HelloWorldMainScreen = new HelloWorldMainScreen();
    pushScreen (mainScreen);
    }

    /**
    @param args
    */
    Public Shared Sub main (String [] args) {}
    TODO self-generating method stub
    HelloWorldApp app = new HelloWorldApp();
    app.enterEventDispatcher ();
    }

    }

    -------------------------------------

    HelloWorldMainScreen.java

    package com.beginningblackberry;

    Import net.rim.device.api.ui.component.LabelField;
    Import net.rim.device.api.ui.container.MainScreen;

    SerializableAttribute public class HelloWorldMainScreen extends form {}
        
    private LabelField labelField;
        
    public HelloWorldMainScreen() {}
    LabelField labelField = new LabelField ("Hello World");
    Add (labelField);
    Thread MainScreenUpdaterThread = new MainScreenUpdaterThread (this);
    thread. Start();
    }
        
    {} public void appendLabelText (String text)
            
    labelField.setText (labelField.getText () + "\n" + text);
    }
    }

    ---------------------------------------------------

    MainScreenUpdaterThread.java

    package com.beginningblackberry;

    Import net.rim.device.api.ui.UiApplication;

    SerializableAttribute public class MainScreenUpdaterThread extends Thread {}
        
    HelloWorldMainScreen screen;
        
    public MainScreenUpdaterThread (screen HelloWorldMainScreen) {}
    this.mainScreen = screen;
    }

    public void run() {}
    for (int i = 0; i)< 10;="" i++)="">
    try {}
    Thread.Sleep (5000);
    } catch (InterruptedException ex) {}
    }
                
    Queue a task on the event thread
    UiApplication.getUiApplication () .invokeLater (new Runnable() {}
    public void run() {}
    mainScreen.appendLabelText ("Update");
    }
    });
    }
    }
    }

    ----------------------------------------------------

    Okay, that's all the code I wrote so far according to the book it should display "Hello World" - and he does, but when 5 s passes, I get an error 104 of the JVM, the null eception exception pointer, but he should update my screen with "Update" every 5 seconds.

    I am writing my code word by Word, to learn as much as possible, but I have no idea how to solve this problem yet

    any advice would be greatly appreciated.

    BR

    It is here:

    public HelloWorldMainScreen() {}
    LabelField labelField = new LabelField ("Hello World");
    Add (labelField);
    Thread MainScreenUpdaterThread = new MainScreenUpdaterThread (this);
    thread. Start();
    }

    local variable hides the field from the class. Replace:

    public HelloWorldMainScreen() {}
    labelField = new LabelField ("Hello World");
    Add (labelField);
    Thread MainScreenUpdaterThread = new MainScreenUpdaterThread (this);
    thread. Start();
    }

  • Problem with the Exceptions of blocked content preferences

    I got an email from [email protected] and get the preferences dialog. I add amazon.com as a site authorized in my Exceptions list. I left 31.2 TB on Mac. I have restart TB. Yet the email will not show images. I add images - amazon.com as an exception. Two other items in the list of preferences are @vvvv.iiiii.images-amazon.com. So, what are the rules for the opening of domain names in the list of exceptions?

    If the email address, then you need full e-mail address.

    If the domain, then you need the address of the Web site,
    for example: noreply @ amazon.co.uk
    Enter: amazon.co.uk

    for example: noreply @ marshalls - seeds.co.uk
    Enter: marshalls - seeds.co.uk

    but not under domain - for example the "cs" are the subdomain:
    for example: noreply @ cs.hm.com
    Enter: hm.com

    But you can add noreply @ cs.hm.com by an email address - of course with no spaces.

    After exception by clicking OK to save the changes made to the Options.
    Select another folder and then reselect the correct folder and e-mail.

  • Problem with the exceptions of the workflow activity management

    Hello

    I use the activity stream in my Bpel process, I get an exception in one of the streams, but other streams are working properly. Even I have included the Catch block for another i still stream get the error response.

    Please suggest me how to sink the activity of exception handling.

    Thanks in advance.

    Hello

    just to restructure your BPEL process. The 'Flow' activity contains several activities 'Sequence '. Just put an activity 'Reach' within each activity in the 'Sequence '. Then put another 'Sequence' activity within each "Scope" activity... and there put logic/required activities.

    After this, you can create fault handling on these activities 'scope '. In this way, you can manage defects in each sequence flow.

    Kind regards
    Martin

  • How can I stop my list of exceptions of the cookie to be changed programmatically?

    I never accept cookies from Firefox, and I have a list of exceptions specifically allowing cookies from sites of my choice. Problem is this exception list is somehow expanded with sites that I didn't understand, and in some cases, the sites that I've blocked more precisely. For example, I explicitly blocked cookies from Google. Yet, when I check the list, I find the rule I entered the blocking of Google and a new rule that I go by specifying that Google may drop of only first party cookies.

    Question: Which (apart from me, the user) is allowed to expand the list of exceptions and why? Seems to me that what makes the promise of the list almost worthless.

    I am running Firefox 33.1.1.

    You are welcome

  • Problem face Time and sky Hub... Help!

    Hi, we have a Hub of Sky - SR102-Z for our connection broadband. Speeds are great, without connection problems with the exception of FaceTime on iPhone, iPad and iMac too.

    Our connection speeds are-

    Upstream (Kbps) 5676

    Downstream (kbit/s) 30816

    We are broken video connections gel, pause, audio drop inside and out, total nightmare! This only happens on our network of Sky at home, we have no problem anywhere else, be on wifi or 3G or 4G. The problems occur with a cable and a Wi - Fi connection.

    I talked to the sky and they say that some ports that require FaceTime will be blocked on the firewall of the router. If someone had this problem and have you been able to fix. Apologies if this has already been covered, while hoping for help.

    Just downloaded Skype and it works very well, no problem, but prefer to use Face Time if possible.

    I have the same problem with ipad/iphone on the hub of sky-, as well as with my friend who has internet sky

    My pings are low and my connection up and down stream is great - just facetime

    My wok phone and ipad on our ADSL (demon provider) photo works is clear as day, if not the devices.

    It would be interesting to know why the Skys connection is bad with Facetime, if the port has been blocked while it wouldn't work?

  • Windows 8.1 Ralink 3290 problems

    Just to make this short, I've already read about most of the Ptolemec forums and other questions people have posted about a similar question however nothing, I've read so far has managed to solve the problem I have.

    I have a laptop of HP ENVY 15 TS. Running windows 8.1 64-bit. I have the Ralink RT3290 802.11bgn Wi - Fi adapter and have used the (Ralink 802.11 wireless card - Ralink Technology, Corp. driver.  (- 5.00.37.0000) is the "BOLD", the current driver im using I tried upgrading to the latest driver, but it does not work, it could not connect to my network in fact he couldn't find all the networks at all.

    I had this problem for a certain time orriginally assuming that it was a problem with my router or modem so I replaced the but the problem continues, so I turned on the forums to see if the problem was more then just me and low and behold its happending to many people.

    If any additional information is needed please let me know.

    Simply put at - it something that will finally solve this problem?

    Cheers - Brandon

    Try this first:

    http://ftp.HP.com/pub/SoftPaq/sp58501-59000/sp58586.exe

    If not work try this:

    http://www.MediaTek.com/en/downloads/?sort=date

    These cards have problems with connecting and many users had reported the same problem.

    At present, Intel and Broadcom is the best and no problems at all except if no driver not installed.

  • Satellita C660-13 q PSC0QE - problems identify the correct driver

    Hi all!

    I have a Toshiba Satellite C660-13 q (init p.n. PSC0QE).

    After a hard drive failure, I replace the HD toshiba and I tried to install Windows 7 Ultimate 32 bit.

    I don't have many problems with the exception of two system devices to identify:

    Chicori USB 2.0 Webcam (integrated) HW ID: USB\VID_04F2 & PID_B1D6 & REV_2613 & MI_00
    Device unkwnown (ACPI, I guess, the system of said cause my laptop battery is down) ID HW ACPI\TOS6205

    I googled for a few days but I can't solve my problems.

    I tried to install the drivers on this site http://www.toshiba.it/innovation/download_drivers_bios.jsp?service=IT but I can't find the ACPI drivers and drivers webcam does not work (after that I clicked the system does nothing).

    Can you help me?

    Thanks in advance and sorry for my bad English.

    Silvio

    > Chicori USB 2.0 Webcam (integrated) HW ID: USB\VID_04F2 & PID_B1D6 & REV_2613 & MI_00

    All essential information on this device are already mentioned.
    It's webcam Chicony device it's the internal webcam and you must install the webcam software!

    > Peripheral Unkwnown (ACPI, I guess, the system of said cause my laptop battery is down) ID HW ACPI\TOS6205
    The other the acpi\tos6205 seems to be Bluetooth!

    The laptop seems to support the BROADCOM 802.11 card BCM94313 WLan (B/G/N).
    It is the WIFI and Bluetooth combo card!
    This means that you have first installed the Broadcom WLan driver, then filter Broadcom BT and Toshiba BT stack

  • Satellite A500 USB problem - unknown device.

    Hello

    Have a Satellite A500 I recently restored to factory from the recovery partition and reinstalled my Win7 upgrade.

    I have a couple of unknown devices in Device Manager and have no way of knowing what they are.
    They would normally be a problem for me except that I'm also the sounds of disconnecting USB every now and then and caveats relating to the devices being plugged into a port USB2 not high speed.

    I have of course plugged anything in time so I expect there is a device which is malfunctioning and not detected correctly.

    The devices I first suspected (webcam, TV Tuner, touchpad) all normally appear in Device Manager so I'm at a loss as to what is the cause.

    Any ideas?
    Beards

    Hello

    I understand this correctly?

    You restored the A500 to the factory settings using the Toshiba recovery procedure and the unknown devices still shows up in the Device Manager?

    That s strange because the recovery disk to put the laptop in the same State as on the first day of purchase. So generally unknown devices should not appear and all drivers must be installed correctly.

    However, I found an interesting and in my eyes useful HowTo document that should help you to know which drivers are missing in your case.

    + How to identify an unknown device (e.g. LAN wireless module)? +
    http://forums.computers.Toshiba-Europe.com/forums/Ann.jspa?annID=78

  • Problem during the call to an external web service - CRM 2013

    Hello everyone.

    It's my scenario:

    I do a real-time CRM data integration with other software. I have deployed several plugins, for the most part in messages to create/update, for entities I want to synchronize. The developers of other software gave me the web service endpoint and I created the client using svcutil. Manually, I created the link and gave it to the generated client, as well as the end point. In the events of the first, I could synchronize some records, but I had a few mapping errors. I debugged the plugin, corrected errors, and when I want again to the tests, the plugin is throw me an exception when any method of the web service. Let me explain the problem:

    The exception:

    I have instantiated the web service client (passing the binding and endpoint). And when I try to call any method (e.g. Add), it throws the exceptions "InvalidOperationException. I started to debug the code and I noticed that just before calling the web service method, the stills in 'Opening' client state (as you can see in the picture above). Of course that throws the exception.

    { The complete exception is: ' cannot modify the purpose of communication, System.ServiceModel.ChannelFactory'1 [IAxxisWcfServices], although it is in the Opening State. "} System.SystemException {System.InvalidOperationException}

    I did a test, outside the environment of the CRM, on a console application with the same conditions of the customer web services (generation with svcutil manually passing the same binding and endpoint), and the same order, the code of the plugin and everything works well. The State of the customer never stills 'Opening', so I put discarded any problem with the web service.

    Does anyone know if I'm missing something in the code? or some configurations?

    CRM is 2013 on site with the latest updates.

    Thanks in advance.

    This issue is beyond the scope of this site and must be placed on Technet or MSDN

    http://social.technet.Microsoft.com/forums/en-us/home

    http://social.msdn.Microsoft.com/forums/en-us/home

  • Is it possible to fix color on starcraft for windows7 and Vista problems?

    I don't know if someone of you, people have the same problem, but I play Starcraft(big fan) and I usually play on my desktop, which works on Windows XP. It works perfectly and I have no problem with the exception of lag casual. However, I sometimes play on laptop from my father (who works on vista) and I get a very annoying problem of Imaging. All the colors which are white or gray are VERY bright blue. Upward, different shades of dark blue (which occurs on the field water) turn into different colors of the Rainbow. I tried everything until I heard that you are able to solve the problem by Alt + Tab. The method worked perfectly and permanently. The main question is... I received my laptop (running Windows 7) and I'm NOT able to solve the problem (and Yes, I ran in compatibility mode).

    Hello Generalpie.

    This isn't something I could fix consistantly.  If you are desperate I would try in a Virtual Machine, if you run Professional you can download a Windows XP VM for this purpose. Paul Smith - MVP for Windows desktop experience... I crawled off NNTP - for now. Detachment Aldershot, United Kingdom. On the internet at windowsresource.net and dasmirnov.net. Please post back to let us know what works and what does not. :-)

  • Problems to install XNA Framework: error code 2908

    When you try to install XNA Framework v4.0 via xnafx40_redist (an automatic installer for an application of steam), after you initialize the installer, I get an error message:

    Microsoft XNA Framework Redistributable 4.0 installation of refreshment
    The installer has encountered an error unexpected installation
    This package. This may indicate a problem with this package.
    The error code is 2908.
    [OK]
    The installation Wizard indicates that the State is: update record of components, with 0% complete. After pressing OK, the message reappears 9 - 10 followed by times of a greater error message:
    Microsoft XNA Framework Redistributable 4.0 installation of refreshment
    An error occurred during the installation of Assembly
    ' Microsoft.Xna.Framework.Avatar, fileVersion = "4.0.3090
    1.0 ", version ="4.0.0.00000", culture ="neutral", publicKey
    Token = "842CF8BE1DE50553", processorArchitecture = "M".
    SIL' '. See Help and Support for more information
    information. HRESULT: 0X8002802F
    [OK]
    The State now says: copy new files, and is 30% complete from the looks of it. After pressing OK, the program says that the installation ended prematurely, only by giving the option to press "Finish" and close the program.
    I'm running on a Windows 7 Ultimate 64-bit:
    Processor: AMD Athlon (TM) X 2 240 processor 2.80 GHz
    Installed memory (RAM): 4.00 GB
    System type: 64-bit Operating System
    Apparently, someone had the same problem with a similar question,
    But Hamilia S methods did not work and the links he posted

    http://forums.create.msdn.com/forums/p/68824/420097.aspx#420097

    http://forums.create.msdn.com/forums/56.aspx

    does not work for me: they send me to a page that don't talk how about "developing applications for Windows phone or Xbox" and redirects you to the windows phone / xbox live Web pages.

    A quick Google search led me to another thread dedicated to the problem:

    http://www.terrariaonline.com/threads/Microsoft-XNA-Framework-4-0-problem.5540/

    me and user "Kaboshi" has had the same problem, and and other users said:

    Download the newspaper probably will help because it will give developers more info focus on (once they're back).
    For reference here is a link to another relevant article, it might not help you directly, but it could be useful for developers or those seeking on the other on the issue and has basic techniques:
    http://blogs.msdn.com/b/astebner/archive/2010/12/29/10110053.aspx

    In the article I posted above, he says mscoree.dll could fail to update during the installation of .NET framework 4, and the Setup program may not be aware of it. Go to your windows system32 or syswow64 folder and check the properties of mscoree.dll - if it's version 2.0 instead of 4.0 then the .NET framework has not been installed correctly. See this article for more information.

    I checked mscoree.dll in my system32 folder and in the properties-> details, it indicates the version of the file / version of the product is 2.0.50727.4927 and last modified on 06/10/2009 16:40. Several messages later, one of the "nbeerbower" users seem to have found a solution:

    Hey everybody! I had exactly the same problem! In fact, none of my programs using .NET 4 would work! But I searched the internet to fix this bug.

    The problem is the result of .NET 4 installer never update .NET 2 mscoree.dll. So, here's the new dll and some instructions on how to solve this problem.

    http://www.Megaupload.com/?d=MBCL8TKC
    (if for some reason any you do not approve the download see here http://social.msdn.microsoft.com/Forums/en/vssetup/thread/a09baa85-635d-420c-a88a-de05f75c8140 to get otherwise)

    Hi, I'm nbeerbower. I have trouble with my .NET 4.0 and it generated an error 2908 Installing XNA which is necessary for terrariums.
    The problem is, because for some reason any .NET 4 does not update .NET 2 mscoree.dll.
    Here is a "kit" to help you fix it.

    1. open take Ownership.reg and add registry keys. This allows you to easily replace mscoree.dll
    2. go in Windows/system32 (if you have a x 64 OS also do the SAME procedure in the Windows/SysWOW64 folder)
    3. find mscoree.dll and right click and take Ownership(you can alsocheck properties and see version, if it's 2.00 then this fix will work!)
    4. replace the included mscoree.dll
    5. repeat in SysWOW64 so you have a 64 bit OS

    Have fun!

    -nbeerbower

    P.S., Make sure that you restart your computer after!

    This solves the problem for users, but I have a problem. Of course the Megaupload link no longer works and the other link.

    http://social.msdn.microsoft.com/Forums/en/vssetup/thread/a09baa85-635d-420c-a88a-de05f75c8140,

    also has links; This, specifically:

    2. Rename mscoree.dll.  It is a real pain.  Go here for the instructions (not for the fainthearted): http://social.msdn.microsoft.com/Forums/en/setupprerelease/thread/150d05c4-4df4-47ec-b7a6-a66f3a55cd08

    It can also be connected to the issues I had with installing the .NET Framework v4.0:

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-windows_programs/NET-Framework-initialization-error/21d069d4-44b7-403a-9e1f-de6d75ffdc36

    Any help or the other problem is appreciated. It seems that other users have solved the problem, so there is probably a solution hidden in one of the threads that I missed.

    Hey there fellow. From the outset, I would apologize for bumping this thread if the OP found a satisfactory solution to their particular issue - as well as an apology to resurrect a debate closed if it's already been resolved.

    I came across this problem, try to run a particular game that required the .net framework version 4; a game that I had literally played earlier the same day. I use 32 bit Windows 7, so that the details of my solution may or may not be applicable to your situation. What I did to fix my problem was simply to repair my installations of .net Framework extended and .net Framework 4 Client Profile. After this, I restarted my computer, uninstalled my XNA Framework and reinstalled. After that, the game starts and runs without a problem.

    Not sure if my problem was an exception or if it will help someone else situation, but I thought I'd post my experience just in case it would be of any help. Good luck out there.

Maybe you are looking for

  • I need driver WinXP for Pavilion DV6599ee video

    Hello. I installed WinXP on my Pavillion DV6599ee but I can not get the correct driver for this laptop. Can someone please give me a link to the correct video driver to WinXP for Pavillion DV6599ee? Thank you.

  • Windows 7 will not Shutdown and then blue screens

    I got this laptop (Satellite A660-18) last week for work and after I installed all the updates of Windows 7 that it would be closed. I formatted the lot assuming that I had done something wrong and it was fine for a day and after installing the updat

  • Mail.app encryption does not work in El Capitan

    I've been encryption of e-mails between colleagues and had years of this work on all OS x versions and it still works on the iPhone. However, I bought a new 12 "and did a fresh install and now cannot operate on El Capitan. My certificate is in Keycha

  • File transfer hard drive for laptop

    I'm looking for transferring files from a portable computer of my new Seagate hard drive. the external hard drive was back to old dell 4600 Tower, I've been through the old programs my screen froze, I guess my question is how to transfer files and is

  • cut and paste not when using MOZILLA FIREFOX

    When I try to do a CUT & PASTE of a website using Mozilla Firefox as my browser, the cfut and paste facility is denied.How to fix this problem.