My understanding is that Mathematica 11 Plot can now handle singularities automatically when plotting. identify-types-of-singularities-and-discontinuitie
I found an a function where Mathematica 11.0.1 gives a 1/0 error message. But still the plot is generated. Here it is 1/(Tan[1/t])
f = 1/Tan[1/t];
Plot[f, {t, - Pi/2, Pi/2},
ExclusionsStyle -> {None, Directive[Red, AbsolutePointSize[5]]}]

It is having hard time with 1/Tan[1/t] The singularities for this function are (using function that finds these, thanks to Edmund and Carl Woll from does-mathematica-have-a-function-to-find-all-singularities-of-an-expression)
singularityDomain[f_, x_] := Module[{res = FunctionDomain[f, x]},
Reduce[! res] /; ! MatchQ[res, _FunctionDomain]]
Clear[x]
singularityDomain[1/Tan[1/x], x]

Is this known, is this a bug?

Exclusionssystem, i.e. settingExclusions -> Noneturns off the messages (and the benefits of exclusion processing, too). – rcollyer Jan 24 '17 at 14:35