Questions tagged [system-error]

94 questions
44
votes
9 answers

Could not execute menu item (internal error)[Exception] - When changing PHP version from 5.3.1 to 5.2.9

I have installed two PHP versions in my WAMP server. When I am using 5.3.10, my wamp server is running just fine. But when I switch to older version of PHP (5.2.9) my wamp server tray icon is showing orange icon. If you click on Put Online I am…
KillerFish
  • 5,042
  • 16
  • 55
  • 64
33
votes
5 answers

AppleScript Application is not allowed to send keystrokes

I made an app with AppleScript called FRIDAY. When I tell it to 'open chrome', it opens google chrome, this is working on Script Editor and out side of script editor. I can also tell it to 'open a new tab' and it opens a new tab using keystrokes: --…
11
votes
2 answers

Should I use system_category or generic_category for errno on Unix?

C++0x has two predefined error_category objects: generic_category() and system_category(). From what I have understood so far, system_category() should be used for errors returned by the operating system, and generic_category() should be used for…
CesarB
  • 43,947
  • 7
  • 63
  • 86
11
votes
5 answers

error while deploying rest web service

I am new to rest web service. Picked the example from http://www.mkyong.com/webservices/jax-rs/jersey-hello-world-example/ While hitting the URL http://localhost:8080/RESTfulExample/rest/hello/mkyong I am getting this strange error : And the…
Onki
  • 1,879
  • 6
  • 38
  • 58
9
votes
1 answer

Exception is not handled on fstream open

Context I have this simple code: #include #include #include int main(int argc, char *argv[]) { std::ifstream file; file.exceptions(std::ios::failbit | std::ios::badbit); try { …
BiagioF
  • 9,368
  • 2
  • 26
  • 50
7
votes
2 answers

System error: The program can't start because MSVCP140D.DLL is missing from your computer. Try reinstalling the program to fix this problem

So I have programmed a simple graphical snake game using SFML in visual studio 2015 and it runs perfectly on my main computer. And I thought that I should try it on my laptop. When running the program it gave me this error: System error: The program…
Omid Ki
  • 155
  • 3
  • 13
6
votes
1 answer

cPickle:SystemError: error return without exception set

While dumping large matrix (170000*20000) as follows cPickle.dump(train_set,gzip.open('train.pickle.gz','wb'), cPickle.HIGHEST_PROTOCOL) I get following error: SystemError: error return without exception set How would I deal in this case?
thetna
  • 6,903
  • 26
  • 79
  • 113
6
votes
1 answer

Boost::file_system: Checking error codes

Although I'm using C++11, this question is boost-related, since I'm processing errors from boost::file_system. In the following situation: try { // If p2 doesn't exists, canonical throws an exception // of No_such_file_or_directory …
ABu
  • 10,423
  • 6
  • 52
  • 103
4
votes
1 answer

In today's C++, can I reliably get errors when constructing an fstream?

I want to do read from a file using C++ standard library facilities (std::ifstream) - while, of course, reliably reporting errors if I encounter them. Apparently, this is not at all an easy task! std::basic_fstream's (the template of which…
einpoklum
  • 118,144
  • 57
  • 340
  • 684
4
votes
1 answer

How can I instantiate a new SystemError object in Node.js?

Looking at Node's documentation, SystemError extends the Error class. However, if you attempt to use SystemError directly, Node will throw a ReferenceError saying that SystemError is undefined. Clearly, according to the docs, it is possible to…
4
votes
2 answers

OpenSSL libcrypto-1_1-x64.dll missing

i have started a project in C++ and need to implement some openssl libraries. I downloaded the libraries, followed the directions on how to install openssl. it was a pain and had to install / reinstall multiple times for multiple reasons. im…
Ronin825
  • 109
  • 1
  • 2
  • 11
3
votes
1 answer

Can't solve "SystemError: unknown opcode"

I am executing a notebook on my laptop and I get the following error. XXX lineno: 17, opcode: 120 --------------------------------------------------------------------------- SystemError Traceback (most recent call…
alec_djinn
  • 10,104
  • 8
  • 46
  • 71
3
votes
1 answer

RuntimeError when reading wav file

I am following the https://github.com/mravanelli/SincNet library . I have followed the documentation as suggested. but I got the RuntimeError I have changed the file access using sudo chmod +x…
BSK
  • 63
  • 1
  • 1
  • 5
2
votes
0 answers

System Error In IIS 7.5 server hosted website

We hosted one of our web application in IIS 7.5 based web server. "Its giving System error". Environment Structure is : 1. 2 IIS 7.5 servers configured for load balancing. 2. AKAMAI configured for caching 3. Each server has one individual private…
Afsheen
  • 21
  • 1
2
votes
1 answer

How to resolve SystemError: initialization of _internal failed without raising an exception?

Problem I have written a code that takes some historical data as input. Assuming dataset has a timeseries format, I am trying to do a regression and find a predictor. Code For my project, I have four files: my_project.py, utilities.py, plotter.py,…
Rebel
  • 472
  • 8
  • 25
1
2 3 4 5 6 7