Why is there NOT a list of Eroor Messages w/Fixes?

It seems to me that many of these Error Codes are pretty well tied into each user. Mine is "Error Code -38 Audio . . . " Why can't there just be a list of these codes and pointers as to where the Error is coming from, such as Mhz of the song not being the default 44.xMhz and being set at 41.xMhz and such? It would make these error messages more (as Steve Colbert would say) "messageyer."
Anyse

While not pretending to defend or justify the problem, usually cryptic system messages are simply because the function that is reporting the error message (i.e popping up the window that states the Error Code -38) is not necessarily the driver/system call (whatever) that is causing the problem.
For instance if I try to save a file to a place where I don't have permissions, the application will attempt to call the 'save' function, the 'save' function tries to write to the disk, the disk then reports that it cannot because the filesystem is not letting me and this simply gets reported back up the chain as error -99 cannot copy file. The error is coming from one place and the 'cannot copy file' is coming from the actual 'save' function (I am of course making these examples up to illustrate a point).
So it can be hard to necessarily give a 'proper' description of a given error if that error is being generated by a driver/system function that is core to the Operating system but shared by different applications.
The best that can be done is to report the 'core' error number and hope that the developer of the application (in this case Logic) is able to match error 38 with something meaningful in a context of its own application.
http://docs.info.apple.com/article.html?artnum=9805 for instance gives you the error codes from 0 to -261
http://docs.info.apple.com/article.html?artnum=9804
error codes from -299 to -5553
As far as I can see -38 is a filesystem error
File not open
Now what does that mean?
I have no idea *in the context* of your problem. However this illustrates that -38 is a 'filesystem' error code and not a specific Logic error, which is why Logic cannot give you a nice error message.
I hope that made sense.
PS I work with developers of software and have to field these types of questions myself but I am not a programmer so maybe someone can elaborate further if needed.
P

Similar Messages

  • When is iCloud going to fix there SPAM filters already?! Why is there not an Allow list in iCloud?!

    When is iCloud going to fix there SPAM filters already?
    ! I have received 3 consecutive emails from the same domain although I marked the first one to arrive as SPAM. Truth be told none of them should get through. Why is there not an Allow list in iCloud?!

    They say it can take up to 15 minutes for the SPAM filters to start working after you mark them as SPAM but I was receiving these at a greater than 15 minute interval.
    Don't they do an MX record check on these emails to check if they are SPAM?
    My guess is Apple has hired a 3rd party business to do SPAM scanning before the SPAM ever gets to Apple. They need to get on them.

  • HT5463 Why is there not an option to allow texts from the same group of allowed callers in do not disturb mode? Seems like a no-brainer!

    Why is there not an option to allow texts from the same group of allowed callers in do not disturb mode? Seems like a no-brainer!

    www.apple.com/feedback

  • HT2534 Why is there not an option for none because i dont have a credit card and there is no none button

    Why is there not an option for none because i dont have a credit card and there is no none button

    Create a new ID by following the steps in this article exactly as written: http://support.apple.com/kb/ht2534.  Pay attention to step 3; you must first download and install any free app then create the ID.

  • Cancel membership - most frustrating thing ever.  Why is there not a phone number??? Probably to avoid allowing people to cancel.

    Cancel membership - most frustrating thing ever.  Why is there not a phone number??? Probably to avoid allowing people to cancel.

    Return, cancel, or exchange an Adobe order
    (actually, the entire adobe website is difficult to navigate even if you want to buy something.)

  • TS3694 why is there an error 9006 and how can i fix it?? please answer for ipad mini

    why is there an error 9006 and how can i fix it?? please answer and btw its an ipad mini

    if you are trying to download and install ios7, it is probably because of the enormous amount of traffic apple's download servers must be experiencing. things should return to normal before too long, just hang tight

  • Why is there no Favorites list for Apps?

    Am I missing something in the App Store or is there not a way to make a "favorites list"? I see so many apps I would like to use or at least read more about and not necessarily download right away. I don't see a way to add an app I like to any sort of list, perhaps an "App Wishlist". When you shop at just about any online store, you are offered the option to "Add item to Wishlist" or "Save for Later".  If I have missed something PLEASE let me know!! Otherwise, Apple is a bit behind on this front.

    Hi...
    You haven't missed anything and you're not the first to mention this.
    You can provide feedback to Apple >  Apple - Mac OS X - Feedback
    The more users that request a "wish list", the better especially since that feature is already available from the iTunes Store.

  • Why is there not a "iBook" app for Macbook pros?

    I just bought some books off of the iTunes store and I am rather frustrated that I can not open them in anyway on my Macbook Pro. Apple why have you not made a iBook app for Macbook Pros yet???

    I wish they would do ibooks mac app - but until then try this one - its simple and free:
    http://calibre-ebook.com/download_osx

  • Why is there not siri for ipad2? (iOS6)

    Why is there no siro for ipad2? (ios6)

    DVD_Junkie wrote:
    The only "why" one can fathom is that Apple wants its users to keep buying the newer toys.
    You are speculating about Apple policies which is prohibited by the Terms of Use of these forums. I can "fathom" several other reasons.

  • Why is there not support

    Is there any particular reason that MSI doesn't support its customers? I have a KT400 Ultra board that has a bios update (1.4) that has a known issue of giving incorrect temperature readings. This issue has been known for a while now and yet there is no solution for it other than rolling back your bios and losing the support offered with the 1.4 bios. There is a known issue with the via chipset and the crc error and the only solution I have found for my system is a beta patch written by a 3rd party. Does MSI not care about getting repeat business? The crc issue is to the point now that I am going to have to replace my board and if MSI support is this bad why would I want to but another board from them?

    Hi,
    The temp reading is a bit strange, I know, but there is no single board on the planet that measure them correct...
    This because the diode inside the XP-chip has a marging of +/-10% off :D
    As for the CRC error, that was fixed sinds BIOS 1.3, so what's the problem?

  • Why we does not have List.contains(E o) List.remove(E o)

    List class is having
    bool contains(Object o)
    bool remove(Object o)
    I was wondering why the List class doesn't have
    bool contains(Object o)
    bool remove(Object o)
    Isn't user will not protected by compiler if they try to do some wrong stuff?
    List<String> list = new ArrayList<String>();
    list.remove(new Integer(123)); // I expect compiler to prevent us to do this???
    Thanks!
    Cheok

    Peter__Lawrey wrote:
    KwangHooi wrote:
    Isn't user will not protected by compiler if they try to do some wrong stuff?User's should be protected, but developers need to understand what they are doing.
    List<String> list = new ArrayList<String>();
    list.remove(new Integer(123)); // I expect compiler to prevent us to do this???That assumes this is an error. The compiler could only determine trivial, pointless cases.
    As a developer you need to be able to determine much more complex cases than the compiler ever could.I do not agree with you.
    Generics feature in Java allow "a type or method to operate on objects of various types while providing compile-time type safety." When we mention about "compile-time type safety", we means the code may be compiled without errors and warnings and does not raise any unexpected ClassCastExceptions at runtime.
    Cosider the following code before we are having generic feature :-
    List v = new ArrayList();
    v.add("test");
    Integer i = (Integer)v.get(0);We will get java.lang.ClassCastException while trying to execute the third line. However, by using generic, programmers are protected from making mistake
    List<String> v = new ArrayList<String>();
    v.add("test");
    Integer i = v.get(0);Compiling the third line of this fragment with J2SE 1.5 will yield a compile-time error because the compiler will detect that v.get(0) returns String instead of Integer.
    So, a class designer, shall design the class in such a way that, "easy to be used, difficult to be mis-used"
    Come back to the original question :-
    If we already have a type safe
    public boolean add(E e)
    Why cann't we have
    public boolean contains(E e)
    public boolean remove(E e)

  • HT2729 Why is there not enough room in my itunes library

    Why do I get a message that there is not enough room in my iturnes library when syncing?

    Why is this so difficult to figure out?
    The message is quite clear.  The size of the iTunes library is larger than the space available on the device.
    Stop attempting to sync the entire library to the device.
    Select the desired content to sync to the device.
    Sync.

  • Why is there not any heat vents on the iMac?

    It would seem like there may some issues posted by other people about heat build-up on the iMac but I haven't found any openings to vent the hot air out. Any comments? Should I take the back off and drill some holes?

    Hi Mike,
    The fan should be continuously cooling your iMac, this is why you won't 'feel' alot of heat.
    The 'fresh air' intake is along the bottm of your Mac (you should be able to feel a little draw if you run your hand under the machine) and it 'exhausts' in the slot near the top on the back, as mentioned earlier. Try not to block up the intake area and keep it a dust free as possible.
    Alot of the heat is produced by the screen and CPU. Whenever I have 4 or 5 Apps running and I am doing Image Editing, I can tell the Mac gets a bit louder because the fan works a little harder to push the hot air out. My fans have never gone into full blown speed, nor are they loud.
    The back top left portion of you iMac will be the 'warmest', if you put your palm in that area, it is noticeable, the warm air is being moved up and out, which is good.
    If you're worried, just download some kind of temperature monitor (you can download the istat nano, it's a widget and free) and keep an eye on temps. The most important thing to look for is not so much 'normal' temp but any large spikes in temp when you're working on the Mac...
    Rick
    iMac G5 iSight 20" - 30G iPOD in Slimming Black -   Mac OS X (10.4.7)   - HP Pav 15" WS and Toshiba Sat 17" WS LP's - Canon 20D & A620

  • Why is there not a saving mechanism in the Notes App?

    I had a few paragraphs written and accidentaly selected and pasted over it all. My passage was deleted and there was no undoing or anything that actually saves what you type. Why not? There should be an update in the future adding to the keypad save, redo, and undo buttons. Just a suggestion, unless there is something i'm missing, in which case anyone who can help, let me know.

    You've posted this in the iSync forum - the MobileMe forums are here:
    http://discussions.apple.com/category.jspa?categoryID=116
    (iSync has nothing to do with MobileMe syncing, or the MobileMe icon in System Preferences).
    You might also want to clarify what you mean by "Dome" - probably means something to you, but nobody else!

  • Why is there not an app for locking folders?

    I have a son who is both gifted and on the autism spectrum. There are a lot of times when he is completely overwhelmed, and he has learned to find a way to escape from the situation through reading or through games. We would like to use his iPad at school, but he has games downloaded on it that he can use at home during appropriate times. To keep him from trying to escape during school into these games, I really need to be able to lock the game folder. However, I have found that an app like this is only available if I were to jailbreak his iPad. I do not want to do this! Why can't someone create an app like this for iTunes?

    Official 3rd party apps don't have access to private iPhone API's - primarily for security reasons. Hacking an iPhone - with the cutsie term for this "jailbreak", removes all the built-in security included with iOS making an iOS device as insecure as Android and Windoze garbage. This is what allows an iOS device to download and install unofficial apps from untrusted sources which can include malware and spyware.
    Such an official option must come from Apple.
    http://www.apple.com/feedback/iphone.html

Maybe you are looking for

  • Flash 8 Saving File to Hard Drive in Mac OS X

    I have an iMac - 1 gig memory OS X - with Flash 8 - I have a Maxtor External Hard Drive. If I try to save an fla file to that hard drive the application terminates. Can any one shed any light on this. I can save files from all other applications. Any

  • Suggest a book for oracle 8i :sql,pl/sql

    hello friends, i am new to this forum.. i am planning to write oracle certification (OCA) iz001 exam. for that i need to prepare oracle 8i sql,pl/sql.. so please any1 of u suggest a book and the author name.. thank u..

  • Is the iTunes store compatible with a PSP?

    Can you download iTunes music and video to a PSP?

  • Running as non-root user

    How do I run the application server instance as non-root user on port <= 1024? I am using Sun One Application Server 7.0 Thanks in advance Sri.

  • Embeding graphics bar chart

    Hi,,, I have to convert one of my reports made on 6i version which contains bar chart that is working on this version after upgrade to 10g I couldn't work with it because its depraceted what to do pls help Best Regards Maher