When writing an error prompt, should we end the sentence with a exclamation mark or a dot?Where does the question mark go in Harvard Referencing when quoting a question with a citation at the end of a sentence (not itself a question)?

Digital signature that is only verifiable by one specific person

How did Avada Kedavra get its name?

How can Caller ID be faked?

How did space travel spread through the galaxy?

How Linux command "mount -a" works

What is the context for Napoleon's quote "[the Austrians] did not know the value of five minutes"?

Can you cover a cube with copies of this shape?

Basic power tool set for Home repair and simple projects

How can the US president give an order to a civilian?

Time at 1G acceleration to travel 100000 light years

Why can't I craft scaffolding in Minecraft 1.14?

How to know whether to write accidentals as sharps or flats?

TiKZ won't graph 1/sqrt(x)

At what temperature should the earth be cooked to prevent human infection?

How can I ping multiple IP addresses at the same time?

How useful is the GRE Exam?

1960s sci-fi anthology with a Viking fighting a U.S. army MP on the cover

What are the mechanical differences between Adapt and Monstrosity?

SQL Server has encountered occurences of I/O requests taking longer than 15 seconds

What does a/.b[c][[1]] mean?

Would a 7805 5v regulator drain a 9v battery?

How do credit card companies know what type of business I'm paying for?

Print the phrase "And she said, 'But that's his.'" using only the alphabet

Manager wants to hire me; HR does not. How to proceed?



When writing an error prompt, should we end the sentence with a exclamation mark or a dot?


Where does the question mark go in Harvard Referencing when quoting a question with a citation at the end of a sentence (not itself a question)?













21















When writing an error prompt, should we end the sentence with a exclamation mark or a dot?



I am writing an application for iPhone and I have some error prompt in my application like "Your password must be 8 character long with alphanumeric characters!" However, I am not completely sold on the idea of putting an exclamation mark (!) on error prompt. Are there situation where it might be warranted, and what about just replacing exclamation marks with dots? Is there a sort of standard among programmers?










share|improve this question



















  • 8





    Apple's Human Interface Guidelines: developer.apple.com/design/human-interface-guidelines/ios/views/…

    – Adam J Limbert
    May 31 at 2:09






  • 5





    @Shadowzee: obligatory xckd

    – Zeus
    May 31 at 3:29






  • 9





    User Experience might be a better place for a question like this.

    – Barmar
    May 31 at 14:42






  • 8





    @Shadowzee - please don't consider terrible password advice like "shorter than 32 characters" or "must contain four different types of character" or "reset once a year with no repeats" to be the standard. It's not 2004 any more.

    – BittermanAndy
    May 31 at 23:51






  • 7





    "Your password must be 8 character long with alphanumeric characters!" -- Why?!? I get the minimum length, but do NOT tell me what my password should look like. Every constraint you add beyond a minimum length reduces the amount of work needed to brute force it. And in this specific case, there's a good chance you'll be rejecting valid alphanumeric characters because of your Regex fails match character sets in other languages.

    – Denis de Bernardy
    Jun 1 at 6:10
















21















When writing an error prompt, should we end the sentence with a exclamation mark or a dot?



I am writing an application for iPhone and I have some error prompt in my application like "Your password must be 8 character long with alphanumeric characters!" However, I am not completely sold on the idea of putting an exclamation mark (!) on error prompt. Are there situation where it might be warranted, and what about just replacing exclamation marks with dots? Is there a sort of standard among programmers?










share|improve this question



















  • 8





    Apple's Human Interface Guidelines: developer.apple.com/design/human-interface-guidelines/ios/views/…

    – Adam J Limbert
    May 31 at 2:09






  • 5





    @Shadowzee: obligatory xckd

    – Zeus
    May 31 at 3:29






  • 9





    User Experience might be a better place for a question like this.

    – Barmar
    May 31 at 14:42






  • 8





    @Shadowzee - please don't consider terrible password advice like "shorter than 32 characters" or "must contain four different types of character" or "reset once a year with no repeats" to be the standard. It's not 2004 any more.

    – BittermanAndy
    May 31 at 23:51






  • 7





    "Your password must be 8 character long with alphanumeric characters!" -- Why?!? I get the minimum length, but do NOT tell me what my password should look like. Every constraint you add beyond a minimum length reduces the amount of work needed to brute force it. And in this specific case, there's a good chance you'll be rejecting valid alphanumeric characters because of your Regex fails match character sets in other languages.

    – Denis de Bernardy
    Jun 1 at 6:10














21












21








21


5






When writing an error prompt, should we end the sentence with a exclamation mark or a dot?



I am writing an application for iPhone and I have some error prompt in my application like "Your password must be 8 character long with alphanumeric characters!" However, I am not completely sold on the idea of putting an exclamation mark (!) on error prompt. Are there situation where it might be warranted, and what about just replacing exclamation marks with dots? Is there a sort of standard among programmers?










share|improve this question
















When writing an error prompt, should we end the sentence with a exclamation mark or a dot?



I am writing an application for iPhone and I have some error prompt in my application like "Your password must be 8 character long with alphanumeric characters!" However, I am not completely sold on the idea of putting an exclamation mark (!) on error prompt. Are there situation where it might be warranted, and what about just replacing exclamation marks with dots? Is there a sort of standard among programmers?







technical-writing punctuation






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 31 at 0:56









Cyn

24.6k253113




24.6k253113










asked May 31 at 0:15









blackbirdblackbird

511312




511312







  • 8





    Apple's Human Interface Guidelines: developer.apple.com/design/human-interface-guidelines/ios/views/…

    – Adam J Limbert
    May 31 at 2:09






  • 5





    @Shadowzee: obligatory xckd

    – Zeus
    May 31 at 3:29






  • 9





    User Experience might be a better place for a question like this.

    – Barmar
    May 31 at 14:42






  • 8





    @Shadowzee - please don't consider terrible password advice like "shorter than 32 characters" or "must contain four different types of character" or "reset once a year with no repeats" to be the standard. It's not 2004 any more.

    – BittermanAndy
    May 31 at 23:51






  • 7





    "Your password must be 8 character long with alphanumeric characters!" -- Why?!? I get the minimum length, but do NOT tell me what my password should look like. Every constraint you add beyond a minimum length reduces the amount of work needed to brute force it. And in this specific case, there's a good chance you'll be rejecting valid alphanumeric characters because of your Regex fails match character sets in other languages.

    – Denis de Bernardy
    Jun 1 at 6:10













  • 8





    Apple's Human Interface Guidelines: developer.apple.com/design/human-interface-guidelines/ios/views/…

    – Adam J Limbert
    May 31 at 2:09






  • 5





    @Shadowzee: obligatory xckd

    – Zeus
    May 31 at 3:29






  • 9





    User Experience might be a better place for a question like this.

    – Barmar
    May 31 at 14:42






  • 8





    @Shadowzee - please don't consider terrible password advice like "shorter than 32 characters" or "must contain four different types of character" or "reset once a year with no repeats" to be the standard. It's not 2004 any more.

    – BittermanAndy
    May 31 at 23:51






  • 7





    "Your password must be 8 character long with alphanumeric characters!" -- Why?!? I get the minimum length, but do NOT tell me what my password should look like. Every constraint you add beyond a minimum length reduces the amount of work needed to brute force it. And in this specific case, there's a good chance you'll be rejecting valid alphanumeric characters because of your Regex fails match character sets in other languages.

    – Denis de Bernardy
    Jun 1 at 6:10








8




8





Apple's Human Interface Guidelines: developer.apple.com/design/human-interface-guidelines/ios/views/…

– Adam J Limbert
May 31 at 2:09





Apple's Human Interface Guidelines: developer.apple.com/design/human-interface-guidelines/ios/views/…

– Adam J Limbert
May 31 at 2:09




5




5





@Shadowzee: obligatory xckd

– Zeus
May 31 at 3:29





@Shadowzee: obligatory xckd

– Zeus
May 31 at 3:29




9




9





User Experience might be a better place for a question like this.

– Barmar
May 31 at 14:42





User Experience might be a better place for a question like this.

– Barmar
May 31 at 14:42




8




8





@Shadowzee - please don't consider terrible password advice like "shorter than 32 characters" or "must contain four different types of character" or "reset once a year with no repeats" to be the standard. It's not 2004 any more.

– BittermanAndy
May 31 at 23:51





@Shadowzee - please don't consider terrible password advice like "shorter than 32 characters" or "must contain four different types of character" or "reset once a year with no repeats" to be the standard. It's not 2004 any more.

– BittermanAndy
May 31 at 23:51




7




7





"Your password must be 8 character long with alphanumeric characters!" -- Why?!? I get the minimum length, but do NOT tell me what my password should look like. Every constraint you add beyond a minimum length reduces the amount of work needed to brute force it. And in this specific case, there's a good chance you'll be rejecting valid alphanumeric characters because of your Regex fails match character sets in other languages.

– Denis de Bernardy
Jun 1 at 6:10






"Your password must be 8 character long with alphanumeric characters!" -- Why?!? I get the minimum length, but do NOT tell me what my password should look like. Every constraint you add beyond a minimum length reduces the amount of work needed to brute force it. And in this specific case, there's a good chance you'll be rejecting valid alphanumeric characters because of your Regex fails match character sets in other languages.

– Denis de Bernardy
Jun 1 at 6:10











5 Answers
5






active

oldest

votes


















44














In a technical manual or documentation or anything similar, you wouldn't put emotion into the text. The only reasons to use an exclamation point are to convey strong emotion or a serious warning.



"Your password doesn't meet the criteria" isn't a dangerous situation. There's no need to use anything but a straightforward and calm voice. Just like you would if you were sitting next to someone in person trying to help them set up their app.



I would only use a exclamation point in an error message if there was something very important going on. Either an outright safety issue or the user was about to delete all their data. Unless you're writing an app that's supposed to sound like a person and be all folksy (and please just don't), you wouldn't speak like a person does, with emotion.



The primary purpose of punctuation in messages from an app is readability. Use a period. A period tells the user that your message is now over. Ellipses imply there is more to come, which isn't the case here.






share|improve this answer




















  • 25





    +1 "please just don't"!!!111

    – Zeus
    May 31 at 3:32






  • 2





    If things in a manual or an on screen message are important or safety critical, use an icon (like a road-sign type warning triangle) in the margin consistently throughout the document. Don't rely on punctuation marks.

    – alephzero
    Jun 2 at 20:05


















21














No, you don't need an exclamation mark. Particularly in English. Nor ellipsis (...) or anything special. It's a simple statement in every sense. In fact, if it's displayed in a standalone box, you could even omit any stop rather than put something unnecessarily flamboyant!!!



Warning! This is an example where it might be warranted, but a colon (:) is still better.






share|improve this answer
































    14














    Don't make your program make a mountain out of a molehill



    If I see a program show an error message with an exclamation mark at the end, I am either going to assume that something is seriously wrong, or start doubting the honesty of the message. Ordinary "user did something the program doesn't handle" errors, like the one you are asking about, do not qualify in this category, nor do error messages generated from transient or temporary external conditions. Even an error message that's indicative of the programmer having made a boneheaded mistake probably doesn't qualify for an exclamation point; the program-killing results of a bonehead exception are emphasis enough.



    So, when is using the exclamation point the correct route to take? If your application is returning an error that needs imminent user action to avoid serious consequences (such as data loss, or worse), then my first course of action would be to design the issue out. However, if that's not possible, then such a heavily emphasized error may be appropriate, in conjunction with the strongest iconography that the system provides. Another case where I would end an error message with an exclamation point is in programmer-facing errors where your code has been placed into a truly impossible situation by something that's beyond a normal mistake, but reflects a failure of a fundamental assumption about the world your program is living in.






    share|improve this answer






























      8














      I use the blithering idiot test.



      Only end an error message with an exclamation mark if the punctuation mark could reasonably be replaced with the phrase "you blithering idiot!"



      For example, "this will turn off the life support systems and kill everyone you blithering idiot! Do you wish to continue?" Or "You have entered the wrong password fifteen times in the last ten minutes!"



      As an end user, an error message with an exclamation mark feels insulting and so it should only be used in extreme cases. It's ok to use an exclamation mark icon for errors though (c.f. Microsoft Windows).






      share|improve this answer


















      • 2





        The exclamation icon was never for errors in Microsoft's UI model; it's for warnings ("a condition that might cause a problem in the future"). Compare docs.microsoft.com/en-us/windows/desktop/uxguide/vis-std-icons and docs.microsoft.com/en-us/dotnet/api/… -- Note that "Exclamation" is also "Warning" with numerical value 48, while "Error" is numerical value 16. The design of the icons has changed over the years, but the concept has been there at least since Windows 3.1-ish in the early 1990s. (Definitely before Windows 95.)

        – a CVn
        Jun 1 at 11:16












      • @a CVN you're right. I obviously haven't made enough windows errors recently - or made so many that I no longer notice the icon. There's also the set of very small icons for field errors. The point I was trying to make was that exclamation icons have a different meaning to exclamation marks in text.

        – MZB
        Jun 1 at 11:53


















      7














      I've been a professional programmer for 40 years, I've written everything from operating systems to business app code to games, and I never use an exclamation point in business or OS code. Ever. Nor ellipsis, why would an error or warning message trail off? Or express any emotion? I use periods, just in case multiple messages are emitted; so they won't run together and be confusing.



      The only time emotion is appropriate is if the "error" is being delivered by a character or automated narrator within a game as "speech", e.g. "You have no troops in Seattle, General!"






      share|improve this answer























      • If not dead, Dennis Ritchie (famed creator of Unix) might disagree

        – dave_thompson_085
        Jun 1 at 11:34











      • @dave_thompson_085 I don't worship the opinions of ancestors. :-) That's just one more obstacle in the road to progress. Proof and logic are one thing; but when it comes to opinion mine is as good, or better (due to my greater exposure to consequences) as anyone's.

        – Amadeus
        Jun 1 at 12:40











      Your Answer








      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "166"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: false,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      noCode: true, onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fwriting.stackexchange.com%2fquestions%2f45600%2fwhen-writing-an-error-prompt-should-we-end-the-sentence-with-a-exclamation-mark%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      5 Answers
      5






      active

      oldest

      votes








      5 Answers
      5






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      44














      In a technical manual or documentation or anything similar, you wouldn't put emotion into the text. The only reasons to use an exclamation point are to convey strong emotion or a serious warning.



      "Your password doesn't meet the criteria" isn't a dangerous situation. There's no need to use anything but a straightforward and calm voice. Just like you would if you were sitting next to someone in person trying to help them set up their app.



      I would only use a exclamation point in an error message if there was something very important going on. Either an outright safety issue or the user was about to delete all their data. Unless you're writing an app that's supposed to sound like a person and be all folksy (and please just don't), you wouldn't speak like a person does, with emotion.



      The primary purpose of punctuation in messages from an app is readability. Use a period. A period tells the user that your message is now over. Ellipses imply there is more to come, which isn't the case here.






      share|improve this answer




















      • 25





        +1 "please just don't"!!!111

        – Zeus
        May 31 at 3:32






      • 2





        If things in a manual or an on screen message are important or safety critical, use an icon (like a road-sign type warning triangle) in the margin consistently throughout the document. Don't rely on punctuation marks.

        – alephzero
        Jun 2 at 20:05















      44














      In a technical manual or documentation or anything similar, you wouldn't put emotion into the text. The only reasons to use an exclamation point are to convey strong emotion or a serious warning.



      "Your password doesn't meet the criteria" isn't a dangerous situation. There's no need to use anything but a straightforward and calm voice. Just like you would if you were sitting next to someone in person trying to help them set up their app.



      I would only use a exclamation point in an error message if there was something very important going on. Either an outright safety issue or the user was about to delete all their data. Unless you're writing an app that's supposed to sound like a person and be all folksy (and please just don't), you wouldn't speak like a person does, with emotion.



      The primary purpose of punctuation in messages from an app is readability. Use a period. A period tells the user that your message is now over. Ellipses imply there is more to come, which isn't the case here.






      share|improve this answer




















      • 25





        +1 "please just don't"!!!111

        – Zeus
        May 31 at 3:32






      • 2





        If things in a manual or an on screen message are important or safety critical, use an icon (like a road-sign type warning triangle) in the margin consistently throughout the document. Don't rely on punctuation marks.

        – alephzero
        Jun 2 at 20:05













      44












      44








      44







      In a technical manual or documentation or anything similar, you wouldn't put emotion into the text. The only reasons to use an exclamation point are to convey strong emotion or a serious warning.



      "Your password doesn't meet the criteria" isn't a dangerous situation. There's no need to use anything but a straightforward and calm voice. Just like you would if you were sitting next to someone in person trying to help them set up their app.



      I would only use a exclamation point in an error message if there was something very important going on. Either an outright safety issue or the user was about to delete all their data. Unless you're writing an app that's supposed to sound like a person and be all folksy (and please just don't), you wouldn't speak like a person does, with emotion.



      The primary purpose of punctuation in messages from an app is readability. Use a period. A period tells the user that your message is now over. Ellipses imply there is more to come, which isn't the case here.






      share|improve this answer















      In a technical manual or documentation or anything similar, you wouldn't put emotion into the text. The only reasons to use an exclamation point are to convey strong emotion or a serious warning.



      "Your password doesn't meet the criteria" isn't a dangerous situation. There's no need to use anything but a straightforward and calm voice. Just like you would if you were sitting next to someone in person trying to help them set up their app.



      I would only use a exclamation point in an error message if there was something very important going on. Either an outright safety issue or the user was about to delete all their data. Unless you're writing an app that's supposed to sound like a person and be all folksy (and please just don't), you wouldn't speak like a person does, with emotion.



      The primary purpose of punctuation in messages from an app is readability. Use a period. A period tells the user that your message is now over. Ellipses imply there is more to come, which isn't the case here.







      share|improve this answer














      share|improve this answer



      share|improve this answer








      edited May 31 at 3:34

























      answered May 31 at 1:04









      CynCyn

      24.6k253113




      24.6k253113







      • 25





        +1 "please just don't"!!!111

        – Zeus
        May 31 at 3:32






      • 2





        If things in a manual or an on screen message are important or safety critical, use an icon (like a road-sign type warning triangle) in the margin consistently throughout the document. Don't rely on punctuation marks.

        – alephzero
        Jun 2 at 20:05












      • 25





        +1 "please just don't"!!!111

        – Zeus
        May 31 at 3:32






      • 2





        If things in a manual or an on screen message are important or safety critical, use an icon (like a road-sign type warning triangle) in the margin consistently throughout the document. Don't rely on punctuation marks.

        – alephzero
        Jun 2 at 20:05







      25




      25





      +1 "please just don't"!!!111

      – Zeus
      May 31 at 3:32





      +1 "please just don't"!!!111

      – Zeus
      May 31 at 3:32




      2




      2





      If things in a manual or an on screen message are important or safety critical, use an icon (like a road-sign type warning triangle) in the margin consistently throughout the document. Don't rely on punctuation marks.

      – alephzero
      Jun 2 at 20:05





      If things in a manual or an on screen message are important or safety critical, use an icon (like a road-sign type warning triangle) in the margin consistently throughout the document. Don't rely on punctuation marks.

      – alephzero
      Jun 2 at 20:05











      21














      No, you don't need an exclamation mark. Particularly in English. Nor ellipsis (...) or anything special. It's a simple statement in every sense. In fact, if it's displayed in a standalone box, you could even omit any stop rather than put something unnecessarily flamboyant!!!



      Warning! This is an example where it might be warranted, but a colon (:) is still better.






      share|improve this answer





























        21














        No, you don't need an exclamation mark. Particularly in English. Nor ellipsis (...) or anything special. It's a simple statement in every sense. In fact, if it's displayed in a standalone box, you could even omit any stop rather than put something unnecessarily flamboyant!!!



        Warning! This is an example where it might be warranted, but a colon (:) is still better.






        share|improve this answer



























          21












          21








          21







          No, you don't need an exclamation mark. Particularly in English. Nor ellipsis (...) or anything special. It's a simple statement in every sense. In fact, if it's displayed in a standalone box, you could even omit any stop rather than put something unnecessarily flamboyant!!!



          Warning! This is an example where it might be warranted, but a colon (:) is still better.






          share|improve this answer















          No, you don't need an exclamation mark. Particularly in English. Nor ellipsis (...) or anything special. It's a simple statement in every sense. In fact, if it's displayed in a standalone box, you could even omit any stop rather than put something unnecessarily flamboyant!!!



          Warning! This is an example where it might be warranted, but a colon (:) is still better.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited May 31 at 0:38

























          answered May 31 at 0:32









          ZeusZeus

          5107




          5107





















              14














              Don't make your program make a mountain out of a molehill



              If I see a program show an error message with an exclamation mark at the end, I am either going to assume that something is seriously wrong, or start doubting the honesty of the message. Ordinary "user did something the program doesn't handle" errors, like the one you are asking about, do not qualify in this category, nor do error messages generated from transient or temporary external conditions. Even an error message that's indicative of the programmer having made a boneheaded mistake probably doesn't qualify for an exclamation point; the program-killing results of a bonehead exception are emphasis enough.



              So, when is using the exclamation point the correct route to take? If your application is returning an error that needs imminent user action to avoid serious consequences (such as data loss, or worse), then my first course of action would be to design the issue out. However, if that's not possible, then such a heavily emphasized error may be appropriate, in conjunction with the strongest iconography that the system provides. Another case where I would end an error message with an exclamation point is in programmer-facing errors where your code has been placed into a truly impossible situation by something that's beyond a normal mistake, but reflects a failure of a fundamental assumption about the world your program is living in.






              share|improve this answer



























                14














                Don't make your program make a mountain out of a molehill



                If I see a program show an error message with an exclamation mark at the end, I am either going to assume that something is seriously wrong, or start doubting the honesty of the message. Ordinary "user did something the program doesn't handle" errors, like the one you are asking about, do not qualify in this category, nor do error messages generated from transient or temporary external conditions. Even an error message that's indicative of the programmer having made a boneheaded mistake probably doesn't qualify for an exclamation point; the program-killing results of a bonehead exception are emphasis enough.



                So, when is using the exclamation point the correct route to take? If your application is returning an error that needs imminent user action to avoid serious consequences (such as data loss, or worse), then my first course of action would be to design the issue out. However, if that's not possible, then such a heavily emphasized error may be appropriate, in conjunction with the strongest iconography that the system provides. Another case where I would end an error message with an exclamation point is in programmer-facing errors where your code has been placed into a truly impossible situation by something that's beyond a normal mistake, but reflects a failure of a fundamental assumption about the world your program is living in.






                share|improve this answer

























                  14












                  14








                  14







                  Don't make your program make a mountain out of a molehill



                  If I see a program show an error message with an exclamation mark at the end, I am either going to assume that something is seriously wrong, or start doubting the honesty of the message. Ordinary "user did something the program doesn't handle" errors, like the one you are asking about, do not qualify in this category, nor do error messages generated from transient or temporary external conditions. Even an error message that's indicative of the programmer having made a boneheaded mistake probably doesn't qualify for an exclamation point; the program-killing results of a bonehead exception are emphasis enough.



                  So, when is using the exclamation point the correct route to take? If your application is returning an error that needs imminent user action to avoid serious consequences (such as data loss, or worse), then my first course of action would be to design the issue out. However, if that's not possible, then such a heavily emphasized error may be appropriate, in conjunction with the strongest iconography that the system provides. Another case where I would end an error message with an exclamation point is in programmer-facing errors where your code has been placed into a truly impossible situation by something that's beyond a normal mistake, but reflects a failure of a fundamental assumption about the world your program is living in.






                  share|improve this answer













                  Don't make your program make a mountain out of a molehill



                  If I see a program show an error message with an exclamation mark at the end, I am either going to assume that something is seriously wrong, or start doubting the honesty of the message. Ordinary "user did something the program doesn't handle" errors, like the one you are asking about, do not qualify in this category, nor do error messages generated from transient or temporary external conditions. Even an error message that's indicative of the programmer having made a boneheaded mistake probably doesn't qualify for an exclamation point; the program-killing results of a bonehead exception are emphasis enough.



                  So, when is using the exclamation point the correct route to take? If your application is returning an error that needs imminent user action to avoid serious consequences (such as data loss, or worse), then my first course of action would be to design the issue out. However, if that's not possible, then such a heavily emphasized error may be appropriate, in conjunction with the strongest iconography that the system provides. Another case where I would end an error message with an exclamation point is in programmer-facing errors where your code has been placed into a truly impossible situation by something that's beyond a normal mistake, but reflects a failure of a fundamental assumption about the world your program is living in.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered May 31 at 4:30









                  ShalvenayShalvenay

                  2913




                  2913





















                      8














                      I use the blithering idiot test.



                      Only end an error message with an exclamation mark if the punctuation mark could reasonably be replaced with the phrase "you blithering idiot!"



                      For example, "this will turn off the life support systems and kill everyone you blithering idiot! Do you wish to continue?" Or "You have entered the wrong password fifteen times in the last ten minutes!"



                      As an end user, an error message with an exclamation mark feels insulting and so it should only be used in extreme cases. It's ok to use an exclamation mark icon for errors though (c.f. Microsoft Windows).






                      share|improve this answer


















                      • 2





                        The exclamation icon was never for errors in Microsoft's UI model; it's for warnings ("a condition that might cause a problem in the future"). Compare docs.microsoft.com/en-us/windows/desktop/uxguide/vis-std-icons and docs.microsoft.com/en-us/dotnet/api/… -- Note that "Exclamation" is also "Warning" with numerical value 48, while "Error" is numerical value 16. The design of the icons has changed over the years, but the concept has been there at least since Windows 3.1-ish in the early 1990s. (Definitely before Windows 95.)

                        – a CVn
                        Jun 1 at 11:16












                      • @a CVN you're right. I obviously haven't made enough windows errors recently - or made so many that I no longer notice the icon. There's also the set of very small icons for field errors. The point I was trying to make was that exclamation icons have a different meaning to exclamation marks in text.

                        – MZB
                        Jun 1 at 11:53















                      8














                      I use the blithering idiot test.



                      Only end an error message with an exclamation mark if the punctuation mark could reasonably be replaced with the phrase "you blithering idiot!"



                      For example, "this will turn off the life support systems and kill everyone you blithering idiot! Do you wish to continue?" Or "You have entered the wrong password fifteen times in the last ten minutes!"



                      As an end user, an error message with an exclamation mark feels insulting and so it should only be used in extreme cases. It's ok to use an exclamation mark icon for errors though (c.f. Microsoft Windows).






                      share|improve this answer


















                      • 2





                        The exclamation icon was never for errors in Microsoft's UI model; it's for warnings ("a condition that might cause a problem in the future"). Compare docs.microsoft.com/en-us/windows/desktop/uxguide/vis-std-icons and docs.microsoft.com/en-us/dotnet/api/… -- Note that "Exclamation" is also "Warning" with numerical value 48, while "Error" is numerical value 16. The design of the icons has changed over the years, but the concept has been there at least since Windows 3.1-ish in the early 1990s. (Definitely before Windows 95.)

                        – a CVn
                        Jun 1 at 11:16












                      • @a CVN you're right. I obviously haven't made enough windows errors recently - or made so many that I no longer notice the icon. There's also the set of very small icons for field errors. The point I was trying to make was that exclamation icons have a different meaning to exclamation marks in text.

                        – MZB
                        Jun 1 at 11:53













                      8












                      8








                      8







                      I use the blithering idiot test.



                      Only end an error message with an exclamation mark if the punctuation mark could reasonably be replaced with the phrase "you blithering idiot!"



                      For example, "this will turn off the life support systems and kill everyone you blithering idiot! Do you wish to continue?" Or "You have entered the wrong password fifteen times in the last ten minutes!"



                      As an end user, an error message with an exclamation mark feels insulting and so it should only be used in extreme cases. It's ok to use an exclamation mark icon for errors though (c.f. Microsoft Windows).






                      share|improve this answer













                      I use the blithering idiot test.



                      Only end an error message with an exclamation mark if the punctuation mark could reasonably be replaced with the phrase "you blithering idiot!"



                      For example, "this will turn off the life support systems and kill everyone you blithering idiot! Do you wish to continue?" Or "You have entered the wrong password fifteen times in the last ten minutes!"



                      As an end user, an error message with an exclamation mark feels insulting and so it should only be used in extreme cases. It's ok to use an exclamation mark icon for errors though (c.f. Microsoft Windows).







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered May 31 at 20:47









                      MZBMZB

                      2213




                      2213







                      • 2





                        The exclamation icon was never for errors in Microsoft's UI model; it's for warnings ("a condition that might cause a problem in the future"). Compare docs.microsoft.com/en-us/windows/desktop/uxguide/vis-std-icons and docs.microsoft.com/en-us/dotnet/api/… -- Note that "Exclamation" is also "Warning" with numerical value 48, while "Error" is numerical value 16. The design of the icons has changed over the years, but the concept has been there at least since Windows 3.1-ish in the early 1990s. (Definitely before Windows 95.)

                        – a CVn
                        Jun 1 at 11:16












                      • @a CVN you're right. I obviously haven't made enough windows errors recently - or made so many that I no longer notice the icon. There's also the set of very small icons for field errors. The point I was trying to make was that exclamation icons have a different meaning to exclamation marks in text.

                        – MZB
                        Jun 1 at 11:53












                      • 2





                        The exclamation icon was never for errors in Microsoft's UI model; it's for warnings ("a condition that might cause a problem in the future"). Compare docs.microsoft.com/en-us/windows/desktop/uxguide/vis-std-icons and docs.microsoft.com/en-us/dotnet/api/… -- Note that "Exclamation" is also "Warning" with numerical value 48, while "Error" is numerical value 16. The design of the icons has changed over the years, but the concept has been there at least since Windows 3.1-ish in the early 1990s. (Definitely before Windows 95.)

                        – a CVn
                        Jun 1 at 11:16












                      • @a CVN you're right. I obviously haven't made enough windows errors recently - or made so many that I no longer notice the icon. There's also the set of very small icons for field errors. The point I was trying to make was that exclamation icons have a different meaning to exclamation marks in text.

                        – MZB
                        Jun 1 at 11:53







                      2




                      2





                      The exclamation icon was never for errors in Microsoft's UI model; it's for warnings ("a condition that might cause a problem in the future"). Compare docs.microsoft.com/en-us/windows/desktop/uxguide/vis-std-icons and docs.microsoft.com/en-us/dotnet/api/… -- Note that "Exclamation" is also "Warning" with numerical value 48, while "Error" is numerical value 16. The design of the icons has changed over the years, but the concept has been there at least since Windows 3.1-ish in the early 1990s. (Definitely before Windows 95.)

                      – a CVn
                      Jun 1 at 11:16






                      The exclamation icon was never for errors in Microsoft's UI model; it's for warnings ("a condition that might cause a problem in the future"). Compare docs.microsoft.com/en-us/windows/desktop/uxguide/vis-std-icons and docs.microsoft.com/en-us/dotnet/api/… -- Note that "Exclamation" is also "Warning" with numerical value 48, while "Error" is numerical value 16. The design of the icons has changed over the years, but the concept has been there at least since Windows 3.1-ish in the early 1990s. (Definitely before Windows 95.)

                      – a CVn
                      Jun 1 at 11:16














                      @a CVN you're right. I obviously haven't made enough windows errors recently - or made so many that I no longer notice the icon. There's also the set of very small icons for field errors. The point I was trying to make was that exclamation icons have a different meaning to exclamation marks in text.

                      – MZB
                      Jun 1 at 11:53





                      @a CVN you're right. I obviously haven't made enough windows errors recently - or made so many that I no longer notice the icon. There's also the set of very small icons for field errors. The point I was trying to make was that exclamation icons have a different meaning to exclamation marks in text.

                      – MZB
                      Jun 1 at 11:53











                      7














                      I've been a professional programmer for 40 years, I've written everything from operating systems to business app code to games, and I never use an exclamation point in business or OS code. Ever. Nor ellipsis, why would an error or warning message trail off? Or express any emotion? I use periods, just in case multiple messages are emitted; so they won't run together and be confusing.



                      The only time emotion is appropriate is if the "error" is being delivered by a character or automated narrator within a game as "speech", e.g. "You have no troops in Seattle, General!"






                      share|improve this answer























                      • If not dead, Dennis Ritchie (famed creator of Unix) might disagree

                        – dave_thompson_085
                        Jun 1 at 11:34











                      • @dave_thompson_085 I don't worship the opinions of ancestors. :-) That's just one more obstacle in the road to progress. Proof and logic are one thing; but when it comes to opinion mine is as good, or better (due to my greater exposure to consequences) as anyone's.

                        – Amadeus
                        Jun 1 at 12:40















                      7














                      I've been a professional programmer for 40 years, I've written everything from operating systems to business app code to games, and I never use an exclamation point in business or OS code. Ever. Nor ellipsis, why would an error or warning message trail off? Or express any emotion? I use periods, just in case multiple messages are emitted; so they won't run together and be confusing.



                      The only time emotion is appropriate is if the "error" is being delivered by a character or automated narrator within a game as "speech", e.g. "You have no troops in Seattle, General!"






                      share|improve this answer























                      • If not dead, Dennis Ritchie (famed creator of Unix) might disagree

                        – dave_thompson_085
                        Jun 1 at 11:34











                      • @dave_thompson_085 I don't worship the opinions of ancestors. :-) That's just one more obstacle in the road to progress. Proof and logic are one thing; but when it comes to opinion mine is as good, or better (due to my greater exposure to consequences) as anyone's.

                        – Amadeus
                        Jun 1 at 12:40













                      7












                      7








                      7







                      I've been a professional programmer for 40 years, I've written everything from operating systems to business app code to games, and I never use an exclamation point in business or OS code. Ever. Nor ellipsis, why would an error or warning message trail off? Or express any emotion? I use periods, just in case multiple messages are emitted; so they won't run together and be confusing.



                      The only time emotion is appropriate is if the "error" is being delivered by a character or automated narrator within a game as "speech", e.g. "You have no troops in Seattle, General!"






                      share|improve this answer













                      I've been a professional programmer for 40 years, I've written everything from operating systems to business app code to games, and I never use an exclamation point in business or OS code. Ever. Nor ellipsis, why would an error or warning message trail off? Or express any emotion? I use periods, just in case multiple messages are emitted; so they won't run together and be confusing.



                      The only time emotion is appropriate is if the "error" is being delivered by a character or automated narrator within a game as "speech", e.g. "You have no troops in Seattle, General!"







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered May 31 at 21:52









                      AmadeusAmadeus

                      64.3k781207




                      64.3k781207












                      • If not dead, Dennis Ritchie (famed creator of Unix) might disagree

                        – dave_thompson_085
                        Jun 1 at 11:34











                      • @dave_thompson_085 I don't worship the opinions of ancestors. :-) That's just one more obstacle in the road to progress. Proof and logic are one thing; but when it comes to opinion mine is as good, or better (due to my greater exposure to consequences) as anyone's.

                        – Amadeus
                        Jun 1 at 12:40

















                      • If not dead, Dennis Ritchie (famed creator of Unix) might disagree

                        – dave_thompson_085
                        Jun 1 at 11:34











                      • @dave_thompson_085 I don't worship the opinions of ancestors. :-) That's just one more obstacle in the road to progress. Proof and logic are one thing; but when it comes to opinion mine is as good, or better (due to my greater exposure to consequences) as anyone's.

                        – Amadeus
                        Jun 1 at 12:40
















                      If not dead, Dennis Ritchie (famed creator of Unix) might disagree

                      – dave_thompson_085
                      Jun 1 at 11:34





                      If not dead, Dennis Ritchie (famed creator of Unix) might disagree

                      – dave_thompson_085
                      Jun 1 at 11:34













                      @dave_thompson_085 I don't worship the opinions of ancestors. :-) That's just one more obstacle in the road to progress. Proof and logic are one thing; but when it comes to opinion mine is as good, or better (due to my greater exposure to consequences) as anyone's.

                      – Amadeus
                      Jun 1 at 12:40





                      @dave_thompson_085 I don't worship the opinions of ancestors. :-) That's just one more obstacle in the road to progress. Proof and logic are one thing; but when it comes to opinion mine is as good, or better (due to my greater exposure to consequences) as anyone's.

                      – Amadeus
                      Jun 1 at 12:40

















                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Writing Stack Exchange!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fwriting.stackexchange.com%2fquestions%2f45600%2fwhen-writing-an-error-prompt-should-we-end-the-sentence-with-a-exclamation-mark%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

                      Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

                      What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company