Error code reference?

I'm running a Java app from ant on linux. When I run the app from the
commandline, it seems to run OK, but from ant I'm getting
BUILD FAILED
/foo/bar/build.xml:140: exec returned: 13and I have no idea what errorcode=13 means. Is there a list of
commandline error codes somewhere that I can consult?
Apologies if this is a FAQ, but I spent quite a while Googling to no
avail. Also please lemme know if there is a more appropriate forum for
this post.

BUILD FAILED
/foo/bar/build.xml:140: exec returned: 13
and I have no idea what errorcode=13 means. Is there
a list of commandline error codes somewhere that I can consult?No, it is command-specific.
For example, the java compiler "javac" might return error 13 for some reason.
But the java packager "jar" might return error 13 for some other reason.
Every program is free to return error codes of its choosing.
So, your only chance is to look at that line (line 140), and see what program it is.
Then you can try to find out why that program failed, or what "errorcode 13" means for that program.

Similar Messages

  • QuickTime Error Code Reference

    Well, everything was working good. I seem to keep getting a QuickTime Error Code -120 now with every time I try to compress something. Is there a reference guide I might go to, to find what this means?

    I believe this particular error was related to a bad driver for my Matrox Compress HD card. (FYI to anyone else out there, you need 1.6 for Leopard, 1.8 for SL). It still would be nice to know if there is a reference for the QT error codes.

  • ERROR CODES REFERENCE for 8i??

    Please refer me to where I can download oracle 8i database error reference. I searched OTN, saw a lot of documentation, but not for error codes. Such useful thing and it's so hard to find!
    Thank you!

    http://tahiti.oracle.com also has all the Oracle documentation online, including the error reference.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • The Cluster Service function call 'ClusterResourceControl' failed with error code '1008(An attempt was made to reference a token that does not exist.)' while verifying the file path. Verify that your failover cluster is configured properly.

    I am experiencing this error with one of our cluster environment. Can anyone help me in this issue.
    The Cluster Service function call 'ClusterResourceControl' failed with error code '1008(An attempt was made to reference a token that does not exist.)' while verifying the file path. Verify that your failover cluster is configured properly.
    Thanks,
    Venu S.
    Venugopal S ----------------------------------------------------------- Please click the Mark as Answer button if a post solves your problem!

    Hi Venu S,
    Based on my research, you might encounter a known issue, please try the hotfix in this KB:
    http://support.microsoft.com/kb/928385
    Meanwhile since there is less information about this issue, before further investigation, please provide us the following information:
    The version of Windows Server you are using
    The result of SELECT @@VERSION
    The scenario when you get this error
    If anything is unclear, please let me know.
    Regards,
    Tom Li

  • Error code 63003..while running a FPGA prog on Host PC using FPGA reference VI

    Hi,
    when i run my FPGA program on HOST PC using a FPGA reference vi on windows platform, I get an error code 63003 (FPGA bit file out of date). When I go back, recompile and run the FPGA program on the FPGA target, then shut it and come back to HOST PC and run my application with FRGA Open refence vi, it runs with out any error! Does any one know why I get that error code 63003

    This error means that the VI which is downloaded to the FPGA was changed on the host/development system, but has not been recompiled. By recompiling it you resolve this problem.
    When a LabVIEW FPGA VI is compiled for the FPGA, the bit stream, which will be downloaded to the FPGA, is stored in the VI file. When LabVIEW RT or LabVIEW Windows attempts to download the bit stream to the RIO card, it makes sure the bit stream corresponds to the VI source code in the same file. This is necessary so that the host application can properly communicate with the VI on the FPGA. If the two are not the same, this error is generated from the Open FPGA VI Reference function in the host application.
    Christian L
    NI Consulting Services
    Christian Loew, CLA
    Principal Systems Engineer, National Instruments
    Please tip your answer providers with kudos.
    Any attached Code is provided As Is. It has not been tested or validated as a product, for use in a deployed application or system,
    or for use in hazardous environments. You assume all risks for use of the Code and use of the Code is subject
    to the Sample Code License Terms which can be found at: http://ni.com/samplecodelicense

  • LDAP: error code 1 - Invalid query reference]; remaining name '

    I have the following function for a paged search operation.
    Data retrieved by this function is used somewhere else to modify the Ldap Directory context.
    Despite my setting for ctx and search control as "no timeout", i've been keeping thrown the exception for operations lasting more than 5 minutes(consistently) and for some short operations(sporadically):
    Paged Search failed : javax.naming.NamingException: [LDAP: error code 1 - Invalid query reference]; remaining name '<directory>'
    I am using DirX as LDAP directory.
    Is this a time-out related exception which can be fixed in the code?
    How can it be fixed?
    There's no clue all over the web about this.
    Thanks.
          * Returns the next page of the search results.
          * The returned result from this method can not exceed page size
          * set in the constructor.
          * @return
         public NamingEnumeration nextPage(){
              //1.step Set PagedResultsControl
              NamingEnumeration results = null;
              Control[] controls=null;          
              try {               
                   if( isSearchStarted==false ){
                        isSearchStarted=true;
                        if(sortingAttributes==null)
                             controls=new Control[]{ new PagedResultsControl(pageSize) };
                        else
                             controls=new Control[]{new SortControl(sortingAttributes, Control.NONCRITICAL), new PagedResultsControl(pageSize) };
                   }else {// examine the response controls
                        cookie = parseControls(ctx.getResponseControls());
                        if( cookie!=null && cookie.length!=0 ){
                             // pass the cookie back to the server for the next page
                             if(sortingAttributes==null)
                                  controls=new Control[] { new PagedResultsControl(pageSize, cookie, Control.CRITICAL) };
                             else
                                  controls=new Control[] {new SortControl(sortingAttributes, Control.NONCRITICAL), new PagedResultsControl(pageSize, cookie, Control.CRITICAL) };
                        }else{
                             //search is finished
                             return null;
                   ctx.setRequestControls(controls);
                   //ctx.getEnvironment().values();
                   //ctx.getEnvironment().put("com.sun.jndi.ldap.connect.timeout", "5000", 300000);
                   ctx.addToEnvironment("com.sun.jndi.ldap.connect.timeout", "0");
                   //ctx.getEnvironment().values();
              } catch (NamingException e) {
                   Tracer.getInstance().error("Paged Search failed while setting response controls: " + e);
                   return null;
              } catch (Exception e) {
                   Tracer.getInstance().error("Paged Search failed while setting response controls: " + e);
                   return null;
              //2.step: DO SEARCH
              for(int i=0;i<10;i++){
                   boolean reconnect=false;
                   try{     
                        results = ctx.search(searchBase, searchFilter, searchCtls);
                        Thread.sleep(300000);
                        //ctx.get
                        //Thread.sleep(300000);
                        break;
                   } catch (NamingException e) {
                        Tracer.getInstance().error("Paged Search failed : " + e);
                        reconnect=true;                    
                   } catch (Exception e) {
                        reconnect=true;
                        Tracer.getInstance().error("Paged Search failed : " + e);                    
                   if(reconnect){
                        try {
                             this.ctx = LDAPServer.getInstance().getDirContext();
                             ctx=ctx.newInstance(controls);
                             //ctx.getEnvironment().values();
                        } catch (NamingException e1) {
                             Tracer.getInstance().error("Could not reconnect the ldapcontext");
              return results;
         }

    It turned out to be a DirX "root DSE" entry "PAGP" that is disposing my paged results if a timeout occurs(300 seconds by default).
    So i have to modify this entry during runtime, which is unfortunately only can be accesed by dirxadm.exe.
    Is it possible to modify this attribute by a ldap context method?

  • Error code -22 - No reference anywhere on here. Can anyone help? Thanks

    Hi, I was freeing space on an external HD that was also acting as my Time machine. I moved some of the really old archive files to trash and then proceeded to empty it. I Keep receiving this error code - The operation can’t be completed because an unexpected error occurred (error code -22). I can't find and reference to this code on here. Plenty of other ones but not -22. I know I have probably not done this the correct way but my Trash will not empty it appears to prepare 200+,000 file for deletion and then starts, gets a way and then the error pops up. I have tried "Option" + secure empty but this doesnt help. If anyone has any idea I would be very grateful for any help. Many thanks in advance. Graham

    Trash Can’t Empty – Big Files
    Trash – Can’t Empty or Move File To Trash
    Trash – Empty When File is Locked or in Use
    Trash FAQ          
    Trash Permission Error
    Trash Permission Error (2)

  • LDAP: error code 19 - Two realms cannot reference the same DN in orclcommon

    Hi,
    In Oracle IDM provisioning console I have created a new Realm.
    When I try to create a new user it is not asking for where the users needs to be created. That is in which realm it should be created.
    I went to configuration and tried to add the DN of the new realm in the user search base.
    I gives the following error.
    --LDAP: error code 19 - Two realms cannot reference the same DN in orclcommonusersearchbase
    Can any one tell me how to create users in different realms.
    Thanks,
    Vasanth

    In my knowledge a registry problem was detected. This can occur when more than one service is defined for a device, if there is a failure opening the service registry entry, or if the driver name cannot be obtained from the service registry entry.
    As far as I know Microsoft provides these solution options:
    Click Uninstall, and then click Scan for hardware changes to load a usable driver.
    Restart the computer in Safe Mode, and then select Last Known Good Configuration. This rolls back to the most recent successful registry configuration.
    Furthermore you could try to remove the Upperfilters and LowersFilters from this registry entry:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l\Class\{4 D36E965-E325-11CE-BFC1-08002BE10318}
    If it doesnt help then access the device manager reinstalls the primary and secondary channel from the IDE ATA/ATAPI Controller section and reboot.
    Good luck and Bye

  • Failed AAF Import from PT: Error Code -39, bad references. Any clues?

    I received an AAF file (and associated 96khz 24bit aif's) exported from ProTools.  Several of the aifs are 28kb files that Finder's Get Info says have a duration of 0:00.  Earlier on in the project I successfully imported an OMF export; this AAF was updating four tracks.
    When I important the aaf into Logic—whether into a new or pre-existing project—regions appear at what look to be the right time indexes, and they appear to be the right length, but the waveform preview never fills in.  All of the regions except one appear to be tied to a single audio file; the many of those very short files are apparently in a "Sample accurate edit.2" region that I can't find elsewhere in the project.
    When I try to play the project, I quickly get a popup stating: "Error code -39 was returned by the Audio driver."
    It looks like a similar issue was raised here: https://logicprohelp.com/forum/viewtopic.php?f=1&t=88286
    Any idea what's going on here?  Is this a Logic importing AAF issue, a PT exporting AAF issue, or something else?

    One of the problems PT has.. is that it has issues exporting AAF files if the file name or path.. contains what Avid describes as "Foreign Characters" (Or to be more accurate... They spell it 'Foreing Characters'!!)
    http://avid.force.com/pkb/articles/en_US/Troubleshooting/en369691?retURL=%2Farti cles%2Fen_US%2Ffaq%2Fen414251&popup=true
    This particular 'feature' has been one of many long standing bugs with PT and AAF exporting... Just do a quick google for "failed aaf export from Pro tools" without the quotes.. to see what I mean....

  • Error code 28. I cannot find any sensible reference/procedure for Error 28.

    My Ipod tells me to connect to I Tunes. After connecting I am told that Itunes will restore my Ipod to Factory Settings. Soon after
    I am given Error code 28. Searing the web I cannot find Error 28 and any solution to restoring my Ipod. Has anyone had the same and
    what can I do to get my Ipod working again. Help please !!

    http://support.apple.com/kb/TS3694#error28
    Points to a hardware issue.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101

  • (error code: ssl_error_bad_mac_read) when trying to log on to Radisson Hotel Narita, Japan guest website. Unable to get on line at all. Everywhere else, Firefox works great.

    The Radisson Hotel in Narita Japan uses Guest-Tek as its sign in for guests to access the internet. When I try to log on I first click that I want to use English. The next page has me either agree or disagree to the terms of usage. After I click agree I get a page that says:
    Secure Connection Failed
    An error occurred during a connection to (website I try)
    SSL received a record with an incorrect Message Authentication Code
    (Error code: ssl_error_bad_mac_read)
    -The page you are trying to view can not be shown because the authenticity of the received data could not be verified
    -Please contact the web site owners to inform them of this problem. Alternatively, use the command found in the help menu to report this broken site
    (There is a button here that says "Try Again", it does no good)
    I don't know who generates this page. Mine is the only computer in the hotel with this problem. I have contacted the web owners via phone who only give me a temporary fix; next time I am there the same problem occurs. I can not find the help menu they reference to report the problem. I'm learning what SSL means, but don't know if I can adjust my security to accept this web site. So far, this is the only place in the world I have problems with this computer and using Firefox. I understand that this may not be a Firefox problem, but any help would be appreciated. I'm rapidly running out of ideas. Thanks, Rick

    First, I agree with Karol, use the AUR so that pacman can do its job.  Second, when you do your make, there is no reason to run it as root (until you do the make install)  For the initial build, it is much safer to not use root; plus all the files in your home directory will continue to belong to use, not to root.
    But, try the AUR.

  • Cannot write to external HD from MacBook.  Error Code -36

    Whenever I attempt to write to my Western Digital External HD (500 gb formatted HFS+m, USB 2.0 connection), I receive a Finder Error:
    "The Finder cannot complete the operation because some data in "filename" could not be read or written. (Error code -36)
    This happens just a little bit ago as I was transferring files over with intent to perform a back up >.< I was in the process of transferring one file when the error initially occurred. Had disk utility try to repair the disk, and it says the disk is fine. The knowledge base is...less than useful in regards to this. There was no power issue during transfer (MacBook was plugged in), nothing else except Safari was running for basic web browsing. I can pull information off of the drive just fine. I cannot add, however.
    Any idea as to a solution for this?
    Message was edited by: Lezard Valeth1

    Thanks for the reply, but unfortunately, most of those would not apply since its almost all files that are having issues. None of them are password protected, in use by system (as far as activity monitor tells me. Tried after several restarts to no avail, unplugging the Ext. HD from the system, etc). I removed non-standard formating (tried simple names).
    I have noticed, however, that small files seem to copy; it's almost like it's having issues with the file size. Smaller files, for example, a 21.9 mb video I made, copy alright. Larger files do not.
    I can copy off of the drive, but not onto the drive. There should be around 320 gb left on the drive. What I would like to do is reformat the Mac or the HD, but unfortunately, I don't have the storage space elsewhere to back up what is on the drive (tis why I downloaded it in the first place), and I need to back stuff up on my MacBook still, hence the attempts at writing to the drive. I could probably have my multimedia machine take some of the data from the Macbook, but I really would rather try to find a direct cause, if possible, for future reference and to see if this is going to be an ongoing issue.

  • Error "Unable to load word breaker for locale 0. Error code 8007007e." with search service application.

    I recreate the Search service application and the default Content source stayning in the 'Recovering' status.
    The log give multiple error 'Unable to load word breaker for locale 0. Error code 8007007e.'
    The default language is English and the reference in registry for word breaker dll is naturallanguage1.dll but I found only the naturallanguage6.dll.

    Hi,
    For your issue, check your current language settings and ensure that search supports the current language.
    On the SharePoint Server open Registry Editor (Start -> type “Regedit” and hit enter). 
    Point to : HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\OfficeServer\14.0\Search\Setup\ContentIndexCommon\LanguageResources\Default\English
    Under the registry key for each of the languages there is a value called StemmerDLLPath and WBDLLPathOverride
    Updated the registry entry with NATURA~1.dll to NATURA~2.dll
    Point to Start -> Administrative Tools -> Services, right click on SharePoint Server Search 14 and click on Restart.
    Performed a Full Crawl and wait for the Full Crawl to complete and try searching again.
    For more detailed information, refer to the following blogs:
    http://blog.ithinksharepoint.com/2008/04/20/a-word-breaker-was-not-found-for-the-given-language-error-when-crawling-content/
    http://www.sharepoint2013.me/Blog/Post/175/Word-breakers-in-SharePoint-2013
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • Error code 1127 when using teststand deployment utility

    I'm have installed on my pc Teststand 3.0 and labview 7.0 -this error occurs during build
    Error Code:1127
    Could not process LabVIEW VIs. Fix any broken VIs before rebuilding. LabVIEW error:
    Open VI Reference in TestStand - Dist Chg and Save VIs.vi->TestStand - Dist Build LLB Image.vi->TestStand - Build VI Distribution.vi->TestStand - Build VI Distribution AX Wrapper.vi->TestStand - Build VI Distribution AX Wrapper.vi.ProxyCaller

    >>>>>>>ok, I'm getting a different error code: error code 7 instead of a error code 1127 with the error:
    Error Code:7 Could not process LabVIEW VIs. Fix any broken VIs before rebuilding. LabVIEW
    error: Invoke Node in TestStand - Dist Cmp Settings to Disk Hier.vi->TestStand - Build VI
    Distribution.vi->TestStand - Build VI Distribution AX Wrapper.vi->TestStand - Build VI
    Distribution AX Wrapper.vi.ProxyCaller
    >>>>>>>>And I did a mass compile of the directory mentioned above and I got this error:
    #### Starting Mass Compile: Thu, Jul 15, 2004 9:44:04 PM
    Directory: "C:\Program Files\National Instruments\TestStand
    3.0\Components\NI\Tools\Deployment Utility"
    CompileFolder: error 13 at C:\Program Files\National Instruments\TestStand 3.0\Compon
    ents\NI\Tools\Deployment Utility\DeploymentUtility.exe
    #### Finished Mass Compile: Thu, Jul 15, 2004 9:44:17 PM

  • What does an error code "300 (LACQ_LICENSE_DENIED)" mean in the server?

    If the Adobe Access Reference Implementation License Server throws a 300 error code, the most likely issue is that the evaluation of the Adobe Access DRM policy failed during license issuance, and that the license server refused to issue a license.
    For example, if the policy specifies an end date that was in the past, the license server will see that the current time is beyond the validity date specified in the policy and reject the license request, recording an error code 300 in the Adobe Access license server's logfile.
    cheers,
    /Eric.

    I can't believe there is no answer to this question.
    after all day researching I've given up google and went back to basics
    OS X Server essentials book....
    and I found it ...
    So in Server.app left panel top... click on your server name and than Settings tab in the right one.
    make sure that Enable Apple push notifications are ticked
    Tha... tha... thats all folks

Maybe you are looking for

  • Unparseable date Error in Mapping in PI 7.1

    I am working on Proxy to SOAP in PI 7.1 version I have input date as  2009-05-14T17:00:00-07:00 from ECC and I need to split the date as 2009-05-14 and time as 17:00 please find the error in mapping below Compilation of MM_ECC_to_ISO_ClaimSearch_Req

  • Getting PhotoStream pix to remain in iPhoto

    I got my pictures to flow among devices in PhotoStream, but the app's description says it's a temporary flow. If I want the pictures to get into my Macbook's iPhoto permanently do I have to manually import them all, or is there a setting that does th

  • Intermittent broadband, phone interference - and t...

    Hi, i have constant problems with my phone and a broadband connection that comes and goes. BT say broadband is picking up interference from my phones. There is no underground cable connection to my house. My phone and broadband come via overhead tele

  • In Finder, Mac Help doesn't work

    When I click on the help icon in the finder tool bar, and choose the " mac help" drop down, a window that says, "untitled" opens, but it is then, poof, gone in a few seconds. What is happening here?

  • Can`t make updates with ps elements 12

    hy, i use ps elements & premium 12, i have a lot performance problems, errors with the program, i still deinstall and install it new! but it is the same before. now i read somewhere (but not on the adobesite, why not??), there is an new update for ps